标签:strong 输出 item 字母 通过 keyword with module python
不能把它们用作任何标识符名称。Python 的标准库提供了一个 keyword 模块,可以输出当前版本的所有关键字:
import keyword
keyword.kwlist
Python 通常是一行写完一条语句,但如果语句很长,我们可以使用反斜杠(\)来实现多行语句,例如:
total = item_one + item_two
print 默认输出是换行的,如果要实现不换行需要在变量末尾加上 end="":
print( x, end=" " )
在 python 用 import 或者 from...import 来导入相应的模块。
将整个模块(somemodule)导入,格式为: import 模块
从某个模块中导入某个函数,格式为: from 模块 import 函数
从某个模块中导入多个函数,格式为: from 模块 import 函数1, 函数2, 函数3
将某个模块中的全部函数导入,格式为: from 模块 import *
标签:strong 输出 item 字母 通过 keyword with module python
原文地址:http://www.cnblogs.com/linhaitingyue/p/6919981.html