用户工具


#!/usr/bin/python
def hello(name):
    return "hello,"+name
print hello("fang")
if 1 == 1:
    print "1==1 : true"
else:
    print "false"
while True:
    print "True"
    break