> 백엔드 개발 > 파이썬 튜토리얼 > python 세션 day-t payilagam for 루프 및 if 조건

python 세션 day-t payilagam for 루프 및 if 조건

Susan Sarandon
풀어 주다: 2024-12-11 03:43:14
원래의
859명이 탐색했습니다.

python session day-t payilagam for loop and if condition

for 루프:
for 루프는 시퀀스(목록, 튜플, 사전, 집합 또는 문자열)를 반복하는 데 사용됩니다.

구문:
시퀀스의 변수

예:

txt = '1234'

for num in txt:
    print(num,end=' ')

output:
1 2 3 4
로그인 후 복사

조건:
If 문은 표현식을 확인하여 조건이 충족되는지 확인하고 얻은 출력을 기반으로 값을 반환하는 방식으로 작동합니다.

syntax:
if condition:
      if condition is True
else:
      if condition is False

로그인 후 복사


x=20
if x>=20:
   print(x is within 20)
else :
   print(x is above the limit)

output:
x is within 20
로그인 후 복사
txt = '12a4'

for num in txt:
    if num>='0' and num<='9':
        print(num,end=' ')
    else:
        print('Not Decimal',end=' ')

Output:

1 2 Not Decimal 4
above code is the example of combines if and for.


로그인 후 복사

name = input("이름을 입력해주세요: ")
인쇄(이름)
이름의 알파벳:
print(알파벳, end='*')

출력:
R*A*J*A

코드는 모든 색인을 각각 확인하고 출력합니다.

name1 = input("Enter the first name: ")
name2 = input("Enter the second name: ")
name3 = input("Enter the third name: ")
name4 = input("Enter the fourth name: ")
name = [name1, name2, name3, name4]


for letter in name:
    if letter[0]=='G':
        print(letter)
    else:
        continue
for alphabet in name:
    if alphabet[-1]=='a':
        print(alphabet)
    else:
        continue
for alpha in name:
    for i in alpha:
        if i==' ':
            print(alpha)
        else:
            continue
for character in name:
    if len(character)>9:
        print(character)
    else:
        continue

output:

Enter the first name: Guhanraja
Enter the second name: Lakshmi Pritha
Enter the third name: Guru Prasanna
Enter the fourth name: Varatharajan
Guhanraja
Guru Prasanna
Guhanraja
Lakshmi Pritha
Guru Prasanna
Lakshmi Pritha
Guru Prasanna
Lakshmi Pritha
Guru Prasanna
Varatharajan



로그인 후 복사

위 내용은 python 세션 day-t payilagam for 루프 및 if 조건의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:dev.to
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿