파이썬
Python 설치, 실행, print, input, 주석, String
설치 https://www.python.org/downloads/ Download Python The official home of the Python Programming Language www.python.org 실행 설치 위치 : C:\Python38 실행 파일 : C:\Python38\python.exe print, input #출력(기본으로 줄바꿈 됨) print('hello!') #출력끝에 줄바꿈 넣지 않기 print('hello! ', end='') #입력 age = input('나이는 ? : ') print(age) 주석 #한줄 주석 """여러줄 주석 /* */ 와 동일 """ String #format str = 'My name is {}'.format('joy') str = '{} x ..
2021. 11. 18. 19:42
최근댓글