하루의 쉼터

[Chapter02] 변수 타입 사용 예제 본문

Study/OReilly

[Chapter02] 변수 타입 사용 예제

Changun An 2020. 12. 5. 21:35
반응형

0. Explanatory notes

type, isinstance 라는 간편한 함수 존재

1. Code

print(type(7))
print(type(7)==int)
print(isinstance(7,int))
print(isinstance(7,str))

2. Result

3. github :

github.com/Anchangun/Python_Study/tree/main/OReilly/Introduction_Python/Chapter_02/Example_of_variable_type

 

Anchangun/Python_Study

Contribute to Anchangun/Python_Study development by creating an account on GitHub.

github.com

 

반응형

'Study > OReilly' 카테고리의 다른 글

[Chapter02] 리스트 사용  (0) 2020.12.05
[Chapter02] 변수 더하기  (0) 2020.12.05
[Chapter02] 다중 변수 할당  (0) 2020.12.05
[Chapter01] Hi Python  (0) 2020.12.05
Comments