목록프로그래밍 (2)
데이터 분석가
1.깃허브 코드의 모든 것 https://github.com/ GitHub: Let’s build from here GitHub is where over 100 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and fea... github.com 2.코드튜터 코드 작동 순서 https://pythontutor.com/visualize.html#mode=edit Python Tutor code visualizer: Visualize code in Python, ..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/k6jBH/btrXN4L0Jr5/88BOprLhoqBARKev7NOLDK/img.png)
안녕하세요 비전공자로써 배우는 파이썬에 대해 설명해드리겠습니다. 일단 파이썬에는 데이터는 여러가지 타입이 있는데 다음과 같습니다 자료형 : 데이터에 대한 type (ex) 숫자, 시퀀스, 매핑, 불) 숫자 : int(정수), float(실수) >>> type(1) # 정수 >>> type(0.1) # 실수 시퀀스 : 문자열(str), 리스트(list), 튜플(tuple) 차이점 1. 리스트(list)와 튜플(tuple) 리스트는 []로 감싸고 튜플은 ()로 감싼다 2. 리스트는 요서 값 생성, 삭제, 수정이 가능하지만 튜플은 요소 값을 변경할 수 없다 tip: 튜플은 잘 안쓰니 개념만 알고 넘어갑시다 >>> type("I LIKE YOU, TELL ME SOMETHING") >>> type(['I', '..