ssoL2 TISTORY

[기초 PYTHON 프로그래밍] 1강. 시작하기 본문

com/python

[기초 PYTHON 프로그래밍] 1강. 시작하기

ssoL2 2020. 12. 23. 23:50

파이썬에서는

print("hello world")

print('hello world')

print("""hello world""")

print(''''hello world'''')

 

큰따옴표, 작음따옴표 상관x

1개 3개로 문자 출력 가능하다.

Comments