python 학습 노트Day1

2958 단어
1. Hello World 프로그램
1.vim  hello.py
2. print("Hello World!")

3. python hello.py
4. Hello World!

2. 변수 및 할당
a. 변수 정의 규칙:
변수 이름은 문자, 숫자 또는 밑줄만 조합할 수 있습니다.
변수 이름의 첫 번째 문자는 숫자일 수 없습니다
다음 키워드는 변수 이름 ['and','as','as','assert','break','class','continue','def','def','de','as','asse','except','exec','finally','finally','for','from','프롬','글로벌','if','if','import','in','is','is','lambda','not','not','not','or','''''''or','''''''''''''''''''''''pass','''print','print','print','pris',''''rirint',''''''''with','yield']
b. 변수의 할당 값
변수의 성명, 부치, 의미 해석
1 name = "lus"
2 name2 = name
3 
4 print (name,name2)
5 lus lus
6 
7 name = "lus2"
8 print (name,name2)
9 lus2 lus   //  name2      

3. 사용자 상호 작용
사용자와 상호작용하는 환경에 들어가다
1 #!/usr/bin/env python
2 
3 name = input("What is your name?")
4 print("Hello " + name )

4.조건판단
5. 순환 제어
6. 목록 작업
7. 이진 비트 연산
8. 중첩 주기
9. 파일 작업
전재 대상:https://www.cnblogs.com/lussys/p/5474545.html

좋은 웹페이지 즐겨찾기