'목록하단 광고 치환자(withSeok)
728x90
A040

kScore.append(input("국어 점수 :"))
kScore.append(input("영어 점수 :"))
kScore.append(input("수학 점수 :"))
kScore.append(input("사회 점수 :"))
kScore.append(input("과학 점수 :"))
print(kScore)

 

A041

# 함수 활용
def add_member():
  print("[신규 멤버 입력 메뉴]")
  input("이름은?")

def del_member():
  print("[기존 멤버 삭제 메뉴]")
  input("삭제할 이름은?")

print("메뉴")
print("1) 신규 멤버 등록")
print("2) 기존 멤버 삭제")

n_menu_input=int(input("메뉴 번호를 입력!"))
if (n_menu_input==1):
  add_member()
elif (n_menu_input==2):
  del_member()

 

A042






 

 

A04






 

 

A04






 

 

A04






 

 

A04






 

 

A04






 

 

A04






 

 

A04






 

 

728x90

+ Recent posts