파이썬을 배우는 과정에서 우리는 자주 접하는 몇 가지 문장을 접하게 됩니다. 모든 사람의 기억을 돕기 위해 아래 문장을 살펴보겠습니다.
관련 권장사항: "python video"
일반적인 Python 문:
(1), 할당: 변수 참조 값 생성
a,b,c='aa','bb','cc'
(2), 호출: 함수 실행
log.write('spam,name')
print, 출력: 인쇄 객체 호출, 인쇄 문
print ('abc')
(3) if, elif, else: 조건문 선택, if 문, else 및 elif 문
if 'iplaypython' in text: print (text)
(4) for, else: 시퀀스 반복
for x in list: print x
(5 ) , while, else: 일반 루프 문
while a > b : print 'hello'
(6), pass: 자리 표시자(비어 있음)
while True: pass
(7), break: 루프 종료
while True: if exit: break
(8), 계속: 현재 루프를 건너뛰고 계속 loop
while True: if skip: continue
다음 문은 비교적 큰 프로그램에서 사용됩니다. 함수, 클래스, 예외 및 모듈과 관련하여 메서드의 목적과 형식도 간략하게 소개합니다.
(9), def: 함수 및 메소드 정의
def info(a,b,c=3,*d): print (a+b+c+d[1])
(10), return: 함수 반환 값
def info(a,b,c=3,*d): return a+b+c+d[1]
(11), python global: 네임스페이스, 범위
x = 'a' def function(): global x ; x = 'b'
(12), import: 액세스, 모듈 가져오기
import sys
(13), from: 속성 액세스
from sys import stdin
(14), 클래스: 객체 생성, 클래스 정의 메서드
class Person: def setName(self,name): self.name = name def getName(self): return self.name def greet(self): print 'hello,%s' % self.nameclass Person: def setName(self,name): self.name = name def getName(self): return self.name def greet(self): print 'hello,%s' % self.names
(15), try, Except, finally: python catch 예외
try: action() except: print ('action error')
( 16), raise: 예외 발생
raise Endsearch (location)
(17), 주장: Python 주장, 확인 및 디버그
assert a>b ,'a roo small'
위 내용은 일반적인 Python 명령문 요약의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!