if문 까지 공부
This commit is contained in:
13
5. Type_function.py
Normal file
13
5. Type_function.py
Normal 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 파이선에 내장된 함수
|
||||
Reference in New Issue
Block a user