반응형
[python] 구문 퀴즈, 파이썬
"""
# What will be the output?
A.Infinite loop
B.120
C.47
D.48
"""
import secrets
def rec(a,b):
if a == 0:
return b
else:
return rec(a - 1, a + b)
print(rec(8, 12))
# 48
s1 = [92,57,[82,75]]
s2 = s1[:]
s2[2][1] = 23
print(s1)
# 클래스
result = 0
def add(num):
global result
result += num
return result
print(add(3))
print(add(4))
"""
# what will be the output?
A.@corporate
B.qna
C.corporate
D.@qna
"""
s = ['@corporate','qna']
print(s[:-1][-1])
반응형
'프로그래밍 > Python' 카테고리의 다른 글
Python Script to Shutdown Computer (0) | 2023.04.17 |
---|---|
python Quiz - What will be the datatype of the var in the below code snippet? (0) | 2023.04.07 |
[python] 구문 퀴즈, 파이썬 (0) | 2023.03.23 |
[PYTHON] 모듈 예제, 모듈 불러오기- 파이썬 (0) | 2023.03.21 |
[python] 파이썬 모듈 예제 (0) | 2023.03.21 |