728x90 반응형 정렬1 Python print 방식 print(f' ') 방식은 파이썬 3.6부터 지원하는 기능 print(f'2의 10제곱 : {2**10}') -> 2의 10제곱 : 1024 print(f'he says \n"Python\'s power is awesome"') he says "Python's power is awesome" print(f'3회 반복 : {", ".join(["Python"] * 3)}') -> 3회 반복 : Python, Python, Python print('''1번째 줄 2번째 줄 3번째 줄''') 1번째 줄 2번째 줄 3번째 줄 print('우측 정렬 + 소수점 둘째까지 %%10.2f |%10.2f|' %(3.141592)) print('좌측 정렬 + 소수점 둘째까지 %%-10.2f |%-10.2f|' %(3.1.. 2022. 6. 13. 이전 1 다음 728x90 반응형