반응형

/********************************************************************************************
-- Title : [PY3.3] 키워드 확인 및 데이터 타입 확인
 
-- Reference : 웹검색
 
-- Key word : keyword 키워드 데이터 타입 data type
 
********************************************************************************************/


#*****************************************
# 키워드 확인
#*****************************************
>>> import keyword
>>> keyword.kwlist
['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class', 'continue',
 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global',
 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise',
 'return', 'try', 'while', 'with', 'yield']
>>>

#*****************************************
# 데이터 타입 확인
#*****************************************
>>> type(1)
<class 'int'>
>>> type(10000000000)
<class 'int'>
>>> type(2**20)
<class 'int'>
>>> type(4.5)
<class 'float'>
>>> type(4e6)
<class 'float'>
>>> x = 3 - 4j
>>> type(x)
<class 'complex'>
>>>
>>> type('a')
<class 'str'>
>>> type('10')
<class 'str'>
>>>


반응형

+ Recent posts