python函数调用后面可以有一个空格
没想到居然可以这样。
不过如果平时这么写,会被人打的
print ('hello')
hello
def sayhi():
...: print('Done')
...:
sayhi () # 这里有一个空格
Done
不过如果平时这么写,会被人打的