Function 정의
2020. 12. 21. 13:04
프로그래밍/Python
function 정의하기 python은 들여쓰기로 function의 시작과 끝을 구분하기에 들여쓰기가 아주 중요함! def say_hello(): print("hello") say_hello() # hello 출력 function의 argument(인자) argument에 default value를 줄 수 있음 💡 Positional Argument : 위치에 의존적인 인자(보통 우리가 알고있는 인자) 💡 Keyword Argument : 위치에 따라서 정해지는 인자가 아닌 argument의 이름으로 쌍을 이뤄주는 인자(python의 특징, 자주 사용함💥) def say_hello(who): print("hello", who) say_hello("Eunwoo") # hello Eunwoo 출력 def p..
Built in Functions
2020. 12. 21. 12:39
프로그래밍/Python
Built in Functions type을 변경하는 함수 int(), float(), bool(), str() age = "18" print(type(age)) # 출력 n_age = int(age) print(type(n_age)) # 출력 🍋 Built in Functions 참고하기 https://docs.python.org/3/library/functions.html Built-in Functions — Python 3.9.1 documentation Built-in Functions The Python interpreter has a number of functions and types built into it that are always available. They are listed her..