본문 바로가기
Python

python for

by NaHyungMin 2019. 8. 27.

= [12345];

 

for i in a:

    if(i % 2 == 0):

        print("%d true" %i);

    else:

        print("%d failed" % i);

 

C#과 다르게 for문이 foreach과 같은 역할도 한다.

그래서 다른 언어처럼 for문을 쓸 때 range 함수를 쓴다.

 

numbers = [12345];

for i in range(len(numbers)):

    if(numbers[i] % 2 == 0):

        print("%d true" %numbers[i]);

    else:

        print("%d failed" %numbers[i]);

 

'Python' 카테고리의 다른 글

python 함수2  (0) 2019.09.02
python 함수1  (0) 2019.08.27
python for활용  (0) 2019.08.27
python while  (0) 2019.08.27
python if문  (0) 2019.08.27