반응형
- pwd : 현재경로
- ls : 하늘색=디렉토리, 현재 경로 파일
- mkdir test: 새로운 test폴더 만들기
- cd (change direction) test: test dir로 들어가기, cd : 홈디렉토리
- ctrl + d : 터미널쉘 빠져나오기
- 파일실행 : python test.py
- jupyternotebook 주석 입력시 # 이 늘어나면 하위 제목이 된다.
- * : bullet
print("I eat %d apples." % 3)
print("I eat %d apples." % 3)
number = 10
day = "three"
print("i ate %d apples, so %s days" % (number, day))
- 주석처리
ctrl+/
''' ''' 로
- len()
- count()
- arr[-1] = n
- list
fruit = ["ban","apple"]
score = [70, "bb"] # 다른타입 가능
- true false
a = 99
(a>100) and (a<200) ===> false
- if문
들여쓰기로 구분, 스페이스 4칸 사용 권장
- for문
i = int(input("출력하고 싶은 단을 입력하세요: "))
for x in range(1,10):
print("%d * %d = %d" %(i,x,i*x))
i = int(input("출력하고 싶은 단을 입력하세요: "))
for x in range(1,10):
print(i,"*", x, "=",i*x)
반응형
'Language > Python' 카테고리의 다른 글
[Python] Method Overriding / Operator Overloading / Polymophism (3) | 2019.08.16 |
---|---|
[Python] Object Oriented Programming (0) | 2019.08.14 |
[Python] Except / File (0) | 2017.08.17 |
[Python] Decorator (0) | 2017.08.16 |
[Python] Extends / super (0) | 2017.08.16 |
댓글