Question 1Multiple Choice파이썬에서 함수의 기본적인 정의 방법은 무엇인가요?function 함수이름() {}def 함수이름():func 함수이름() {}function: 함수이름()
Question 7Multiple Choice파이썬에서 'Hello'라는 문자열을 출력하는 올바른 방법은 무엇인가요?print 'Hello'print(Hello)print('Hello')print.f('Hello')
Question 12Multiple Choice파이썬에서 반복문을 사용하여 0부터 4까지의 숫자를 출력하려면 어떤 구문을 사용해야 하나요?for i in range(5): print(i)while i < 5: print(i)for (i = 0; i < 5; i++): print(i)for (i in range(5)): print(i)