ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 10/04 study
    study diary 2020. 10. 3. 17:08
    728x90

    python3

    1. 제대후 기초부터.

     

    문자열

    a="hi"

    b="brother"

    a+b

    'hi brother'

     

    리스트

    a=[1,2,3]

    a*3

    [1,2,3,1,2,3,1,2,3]

    print(a[0]*2)

    2

    a[0:2]

    [1,2]

     

    sep함수                      <->       end함수

    print(3,4,sep='\n')                    for i in range(5):

    3                                              print(i,end='')

    4                                          01234 

     

     

    A,B=map(int,input().split())

    여기서 맵은 int 함수를 뒤에 있는 요소들에 하나씩 적용 시켜 각각의 주소를 넘겨 주는 것 입니다.

    일반적인 코딩으로 플어쓰면

    sr=input()

    sl=sr.split()

    A=int(sl[0])

    B=int(sl[1])

     

    빠른 속도를원할때 input 함수는 느려서 sys.stdin.readline()을 사용함

    a,b=map(int,input().split())

    a,b=map(int,sys.stdin.readline().split())

     

    [리스트]

    (튜플) 수정불가

    반응형

    'study diary' 카테고리의 다른 글

    11/25 study  (0) 2020.11.25
    11/02 study  (0) 2020.11.02
    11/01 study  (0) 2020.11.01
    10/3 study  (0) 2020.10.03
    10/02 study  (0) 2020.10.02

    댓글

Designed by Tistory.