Quick actions

cmd+k|ctrl+k

Navigation

Languages

2019-11-08

Snippet info

Language

Python

Visibility

public

Author

seounghyukp

Created

2019-11-08T12:40:25Z

Updated

2019-11-08T12:41:50Z

d = 1j
print(d**2)
d = 3 + 1j

a = 10
b = 20
print(a + b)

c = 100
print(c)



name = "Jinkyoung"
address = '서울시 강남구'
print(name, address)


text = '''이렇게 작성하면 줄 바꿈도 그대로 적용해서 여러 줄의 문자를 작성할 수 있습니다.'''
print(text)


print("hello world")

"Hello" "world"

"python"[0]


str [:]
str [-6:]
INFO