ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [Python] 생활코딩 Python 입문 수업 - 파이썬 제어문
    잡/코딩 2022. 5. 8. 20:04
    반응형

     

    강의 정리

     

    2. Boolean

     

    Boolean 데이터 타입: True/False

    print(True)

    print(False)

     

     

    3. comparison

     

    print('1==1', 1==1)

    print('1==2', 2==1)

    print('1 < 2', 1 < 2)

    print('1 > 2', 1 > 2)

    print('1 >= 1', 1 >= 1)

    print('2 >= 1', 2 >= 1)

    print('1 != 1', 1 != 1)

    print('2 != 1', 2 != 1)

     

    == : ‘같냐는 뜻

    ( = : 대입연산자 오른쪽 값을 왼쪽 변수에 대입 / 우리가 원하는 건 비교연산자이기 때문에 print(1=1) 하면 에러 남)

    !: 반대의 의미, ‘다르냐는 뜻

     

     

    4. 조건문(conditional statement)

     

    조건문: 하나의 프로그램으로 여러 가지를 할 수 있게 됨

     

    if boolean: code (if 뒤가 True일 때만 code 실행)

     

    들여쓰기 할 때: (일반적으로) tab 사용

    *한 번 tab/space*2 썼으면 계속 tab/space*2 써야 함

     

    #: 주석. 실행 안 됨

     

    # 012

    print(0)

    if True:

        print(1)

    print(2)

    print('---')

     

    #02

    print(0)

    if False:

        print(1)

    print(2)

     

    input_id = input('id : ')

    id = 'egoing'

    if input_id == id:

        print('Welcome')

     

     

    5. 반복문

     

    반복문~리스트

     

    반복문의 여러 형식 중 가장 유명한 것: for

     

    names = ['egoing', 'basta', 'blackdew', 'leezche']

    for name in names:

        print('Hello, '+name+'. Bye, '+name+'.')

     

     

    6. 수업을 마치며

    더 학습할 내용 추천:

     

    - Logical Operator (논리 연산자) - 복잡한 로직을 간단하게 함축

    ex. and, or

    input_id = input('id: ')

    input_password = input('password: ')

    if input_id == 'egoing':

        if input_password == '111111':

            print('Welcome')

    if input_id == 'egoing'and input_password == '111111':

            print('Welcome')

    if input_id == 'egoing':

        print('Welcome')

    if input_id == 'basta':

        print('Welcome')

    if input_id == 'egoing'or input_id == 'basta':

        print('Welcome')

     

     

    - 표 데이터를 파이썬으로 가져오기

    Panda(<-) & Numpy(<-숫자로 채워진, 수학적 계산이 필요한 표)

     
     
    +) 후속 학습 가능한 지식지도 서말
    반응형

    ' > 코딩' 카테고리의 다른 글

    [Python] 생활코딩 Python 입문 수업  (0) 2022.05.05

    댓글

Designed by Tistory.