ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 변수, 수치, print 출력
    python/기본 2022. 4. 24. 21:38
    one = 1
    two = 'two'
    
    book_float = 15.80
    print(type(book_float))  # <class 'float'>
    
    true_bool = True
    false_bool = False
    
    r = 7 / 4  # 1.75
    q = 7 // 4  # 1
    
    print('a', 'b', sep=',')  # a,b
    print(2 ** 10)  # 2^10=1024
    
    # math 도움말 보기
    import math
    
    print(help(math))

    'python > 기본' 카테고리의 다른 글

    Set  (0) 2022.04.29
    Dictionary  (0) 2022.04.29
    Tuple  (0) 2022.04.29
    List  (0) 2022.04.29
    String  (0) 2022.04.24

    댓글

Designed by Tistory.