标签:
1 print "Hello World!"
_:最后一个表达式的值
>>:输出重定向
%:打印的格式化字符串和值进行风格,% 后的值为一个 tuple 对象,用 “()” 包含的
print "%s is a number %d." % ("Python", 6) import sys print >> sys.stderr, "msg" file = open("filename", "a") print >> file, "File MSG." file.close() hello = raw_input("Hello: ") print "Num: %d." % (int(hello))
# :注释符号
+ - * / // % **
< <= > >= == != <>
and or not
**:乘方
int long bool float complex
decimal:
import decimal
decimal.Decimal("1.1")
1.1 -> 1.1000001 (一般是这样计数的)
支持 [],[:] 操作
从 0 开始索引,支持切片操作 ‘:‘
list: [] 可更改值
tuple: () 不可更改值
{‘key‘ : ‘value‘}
if condition: something
while condition: something
for iteration: something
range() : 范围
enumerate() :枚举
Y = [ x**2 for x in range(8) if not x % 2]
fobj = open("Filename", "r") for eachline in fobj: print eachline, # ‘,‘ 使 print 不打印换行符 fobj.close()
try: something except IOError, e: deal except
def function_name(): something
class ClassName(BaseClassName): something
import module_name
dir([obj])
help([obj])
int()
len()
open()
range()
raw_input()
str()
type()
标签:
原文地址:http://www.cnblogs.com/YBhello/p/5544632.html