标签:数据类型 注释 不同 模块 one 一段 最大的 expected 计算机
一、Python的语法if True:
print "True"
else:
print "False"
if True:
print "Answer"
print "True"
else:
print "Answer"
# 没有严格缩进,在执行时会报错
print "False"
$ python test.py
File "test.py", line 10
print "False"
^
IndentationError: unindent does not match any outer indentation level
IndentationError: unindent does not match any outer indentation level
name=input("您的名字是:")
print("您的名字是"+name)
标签:数据类型 注释 不同 模块 one 一段 最大的 expected 计算机
原文地址:http://blog.51cto.com/13770206/2299096