본문 바로가기
Python/Web Scraping

[Python] #1.3 Built-in Functions (#코딩공부)

by 함께 공부해요 2020. 1. 31.

https://youtu.be/NE9Wk4shM10

가즈아!


https://wook-2124.tistory.com/10

 

[Python] #1.2 Tuples and Dicts

https://youtu.be/98UDadllJS8 오늘도 니꼴라스쌤 강의, 정리시작! 저번에 올린 글 https://wook-2124.tistory.com/9 [Python] #1.1 Lists in Python https://youtu.be/-diVnNxG2mk 오늘도 공부한 내용 정리시작!!..

wook-2124.tistory.com

저번꺼 복습 한번 하고!


https://docs.python.org/3/library/

 

The Python Standard Library — Python 3.8.1 documentation

The Python Standard Library While The Python Language Reference describes the exact syntax and semantics of the Python language, this library reference manual describes the standard library that is distributed with Python. It also describes some of the opt

docs.python.org

https://repl.it/

 

The world's leading online coding platform

Powerful and simple online compiler, IDE, interpreter, and REPL. Code, compile, and run code in 50+ programming languages: Clojure, Haskell, Kotlin (beta), QBasic, Forth, LOLCODE, BrainF, Emoticon, Bloop, Unlambda, JavaScript, CoffeeScript, Scheme, APL, Lu

repl.it

준비물 챙겨서 출발~


1.  Built-in Functions

오늘은 Built-in Functions에 대해서 공부! 왼쪽에서부터 밑으로 쭉 훑으면서 아는걸 적어봅니다..

 

bool = boolean(True or False)

float = 소수

int = integer(정수)

len = length(길이)

max = max(최대)

min = min(최소)

print = 터미널에 나타냄

str = string(문자열)

tuple = 나열형

type = 어떤 것들?(str, int, float ...)

 

일단 확실히 아는 것들이 요정도 있네요!


2. print(len())

그럼 length(길이)를 터미널에 나타내볼까요?


문자열인 str도 몇 글자가 적혀있는지 알 수 있네요.

z x c v a / s d f q w / e r t y u / i g h j k / b n o l p

           5            10           15          20           25

 

역시.. 컴퓨터(기계)는 정확하네요 ㅋㅋ


3. int() - 정수로 바꾸기

int()로 type 변환하는건 정말 유용하게 쓰일 수 있는데요.

실무적인 내용연습은 다음에 진행해보도록 하고, 어떻게 type 변환을 할 수 있는지 알아보도록 합시다!


위에 보이는 것처럼 "27"의 type은 사실상 <class 'str'(문자열)>이지만

 

n_age = int(age)을 입력해서 "27"(str)을 int(정수)로 읽게하면,

type(n_age)는 오른쪽 터미널에 보이는 것처럼 <class 'int'>로 변환되서 나오게 되는 것을 알 수 있다.

 

다음부터는 이러한 type 변화를 이용해서 코딩을 진행해봐야겠다!


※ 다들 신종 코로나 바이러스 조심하세요!!!!

댓글