Quick actions

cmd+k|ctrl+k

Navigation

Languages

2019-11-24

Snippet info

Language

Python

Visibility

public

Author

seounghyukp

Created

2019-11-24T03:46:02Z

Updated

2019-11-24T04:50:40Z

print(str(100))
print(str(3.14))
print(str(True))
print(str(1.23e4))
print(bool(0), bool(0.0))
print(bool(''))
print(bool(10), bool(3.6))
print(('hello'))
name, age = "홍길동", 20


print('{}님의 나이는 {}입니다.'.format(name, age))
name, age = '홍길동', 20
print(name, '님의 나이는 ', age, '살 입니다.', sep='')

a =123
b = -123
print("출력: [{:05}], [{:05}]".format(a, b))
print("출력 ")

INFO