Quick actions

cmd+k|ctrl+k

Navigation

Languages

2019-12-14

Snippet info

Language

Python

Visibility

public

Author

kkanghj6514

Created

2019-12-14T03:44:41Z

Updated

2019-12-15T03:40:34Z

a = 12345.123456789
print('출력: [{}], [{:f}], [{:15f}], [{:10.2f}], [{:20.10f}]'.format(a, a, a, a, a))
str_ ='Hello World'
print('출력: [{}], [{:s}], [{:20}], [{:5}], [{:5}]'.format(str_ ,str_, str_, str_))
print('출력: [{}], [{:.5}], [{:10.5s}]'.format(str_, str_, str_))
a,b,c = 10,20,30
print
INFO