format() 본문
** format 문자열을 이용한 데이터 출력
# 1 print("help : {} ".format(variable))
# 2 print(f"help:{variable}" -> f for format
** "{0} , {1} , ... ".format(first, second, .. , last )) 로 인덱스를 활용하여 {}탭에 들어갈 format(변수) 순서도 지정할 수 있다
Comments