标签:
1.查看内置函数
>>> dir(__builtins__)
2.查看内置函数帮助
>>> help(input)
help查看
3.变量
变量没有声明,直接使用。如: thacher="rex".
注意: 1>要有赋值。
4.字符串
转义字符 \
原始字符串:r‘c:\program\tcs‘
5.
以上操作在Python shell 中运行!
python 基础
原文地址:http://www.cnblogs.com/rexhu/p/5491848.html