我刚开始学习 Python,我一直在搞乱输入不同的代码来练习学习,我编写了以下代码:
import math
def lol():
print (math.cos(math.pi))
print ("I hope this works")
def print_twice(bruce):
print bruce
print bruce
print_twice(lol())
当我运行它时,我的输出是:
-1.0
I hope this works
None
None
为什么它不打印函数 lol() 两次?