code/python

빠른 Python 정리 10: 조건

devstdio 2019. 5. 28. 22:16

조건

if

if (1 and True): # and = &&
    print("TRUE")
else:
    print("FALSE")

1 이고 True 이면 TRUE 출력, 아니면 FALSE출력

출력: TRUE

in

print('p' in 'python') -> True ('python'이라는 문자열 내 'p'라는 문자가 있으니 True 반환)

print('java' not in 'python') -> True ('python'이라는 문자열 내 'java'라는 문자열은 없음)

for i in [1,3,5,8,9]:
    print(i)

출력:

1
3
5
8
9
반응형