if문 까지 공부

This commit is contained in:
김민구
2021-04-26 20:40:14 +09:00
parent 30ef4cfbc7
commit 21d7d85b67
12 changed files with 420 additions and 3 deletions

13
5. Type_function.py Normal file
View File

@@ -0,0 +1,13 @@
# type 함수로 자료형 타입 확인
print(type(3))
print(type(3.0))
print(type("3"))
print(type("True"))
print(type(True))
def hello():
print("Hello World!")
print(type(hello)) # function 함수
print(type(print)) # builtin_function_or_method 파이선에 내장된 함수