days = ("mon","tues","wed","fri")
for day in days:
if day == "wed":
break
else:
print(day)
모듈
from math import ceil, fsum
from math import 일 경우 specific하게 가져올수있음
import math
모든 math module 을 가져와 비효율적
from 모듈명(math) import 모듈기능(ceil) as 반올림
from *** import ** as **** 으로 모듈이름을 바꿀 수 있다
from 파일명(calculator) import 함수(plus),(minus)
print(plus(4,5), minus(5,4)) 다른 파일의 함수를 끌어 쓰는게 가능
<자주쓰는 모듈>
math — Mathematical functions
math - Mathematical functions - Python 3.9.0 documentation
datetime — Basic date and time types : 자주쓰는 모듈
datetime - Basic date and time types - Python 3.9.0 documentation
CSV File Reading and Writing
csv - CSV File Reading and Writing - Python 3.9.0 documentation
json — JSON encoder and decoder
json - JSON encoder and decoder - Python 3.9.0 documentation