다른 프로그래밍 언어와 마찬가지로 Python에도 조건문이 포함되어 있습니다. 하지만 유일한 차이점은 else if 대신 elif가 있다는 점입니다.
조건문은 특정 조건에 따라 프로그램의 흐름을 제어합니다. 조건이 True인지 False인지에 따라 프로그램이 다양한 코드 블록을 실행할 수 있도록 하여 의사 결정을 내릴 수 있습니다.
if,elif 및 else를 개별적으로 설명하는 대신에 다루겠습니다. 모두 하나의 예입니다.
if a%2==0: print("The Number is an Even Composite") elif not_prime(a): print("The Number is an Odd Composite") else: print("The Number is a Prime")
여기서는 숫자를 3이라고 하겠습니다.
먼저 프로그램은 숫자가 2로 나누어지는지 확인합니다(a%2==0인 경우)
짝수가 아니기 때문에 elif satement(if not_prime(a))
로 이동합니다.
if도 elif도 true가 아니므로 프로그램은 else 부분을 사용하면 다음과 같이 인쇄됩니다.
수는 소수이다
age=19 if age>18 and age<25: print("the person is an Young Adult")2. 중첩된 조건문
age = 20 if age >= 18: if age < 25: print("You are a young adult.") else: print("You are an adult.") else: print("You are not an adult yet.")3. 삼항 조건문
bob_score=87 alen_score=92 answer=bob_score if bob_score>alen_score else alen_score print(answer)
정답:92
? 오늘의 트릭:()으로 시작하고()로 끝납니다
으로 시작하는 목록에서 모든 이름을 반환한다고 가정해 보겠습니다.
"에이."
startswith() 사용:
listl = ['lemon','Orange','apple', 'apricot'] new_list = [i for i in listl if i.startswith('a')] pri nt(new_li st)
정답: ['사과', '살구']
listl = ['lemon','Orange','apple', 'apricot'] new_list = [i for i in listl if i.endswith('e')]] pri nt(new_li st)
정답: ['사과', '오렌지']
루프있습니다.
1. 하면서
2. 를 위해
a=[1,2,3,4] for i in a: print(a)
정답: 0n 1n 2n 3n 4n
여기서 for 루프는 목록 a의 모든 요소를 반복하여 인쇄합니다.
for:와 함께 range() 사용
range() 함수를 사용하여 일련의 숫자를 생성할 수 있습니다.
if a%2==0: print("The Number is an Even Composite") elif not_prime(a): print("The Number is an Odd Composite") else: print("The Number is a Prime")
정답: 0n 1 n 2n 3n
범위():
range() 함수의 기본 구문은 다음과 같습니다.
age=19 if age>18 and age<25: print("the person is an Young Adult")
기본적으로 start=0 및 step=1입니다.
age = 20 if age >= 18: if age < 25: print("You are a young adult.") else: print("You are an adult.") else: print("You are not an adult yet.")
정답:1n2n
1n3n
while 루프는 조건이 True로 평가되는 한 코드 블록을 계속 실행합니다.
bob_score=87 alen_score=92 answer=bob_score if bob_score>alen_score else alen_score print(answer)
정답: 4n 3n 2n 1n
break 문은 조건에 관계없이 루프를 조기에 종료하는 데 사용됩니다. break 문이 실행되면 컨트롤이 루프를 종료합니다.
listl = ['lemon','Orange','apple', 'apricot'] new_list = [i for i in listl if i.startswith('a')] pri nt(new_li st)
정답: 10n 9n 8n 7n 6n
continue 문은 현재 반복에서 나머지 코드를 건너뛰고 루프의 다음 반복으로 진행하는 데 사용됩니다.
listl = ['lemon','Orange','apple', 'apricot'] new_list = [i for i in listl if i.endswith('e')]] pri nt(new_li st)
정답: 1n 3n 5n 7n 9n
pass 문은 코드 블록이 구문상 필요하지만 코드를 실행하고 싶지 않을 때 사용되는 자리 표시자입니다. 말 그대로 아무것도 하지 않습니다.
a=[1,2,3,4] for i in a: print(a)
정답: 0n 1n 2n 4n
위 내용은 조건문과 루프의 기술을 마스터하는 날의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!