01.15 for문 & module

김오왼·2022년 1월 15일
0

python

목록 보기
6/22

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)) 다른 파일의 함수를 끌어 쓰는게 가능

<자주쓰는 모듈>

profile
전문 금융인을 목표로하는 김야옹야옹이

0개의 댓글