python入门

Posted yasepix

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python入门相关的知识,希望对你有一定的参考价值。

 

 

import keyword

print(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]

 

mystr = input("请输入数据")
print(mystr)

 

import os
cmd = input("cmd:")
os.system(cmd)

 

name=yasepix
print(type(name))
print(id(name))
num=111
print(type(num))
num=11111111111111111111111111111111111111111111111
print(type(num))


结果为:
<class int>
<class int>

 

以上是关于python入门的主要内容,如果未能解决你的问题,请参考以下文章