본문 바로가기
Python/Python_basic

[Python] 출력 Print

by Mr.DonyStark 2023. 10. 3.

□ 출력
 ○ print(표시내용)
   - 문자는 " ", ' '로 감쌈
   - 숫자는 그대로 기재

print('hello python')
print("1+2")
print(1+2)
print((1+2)/3)