考虑 pygame 循环中的这一行:
pygame.display.set_mode().fill((0, 200, 255))
来自: http: //openbookproject.net/thinkcs/python/english3e/pygame.html
一、你怎么知道set_mode中嵌套了一个填充函数?我在 pygame 文档中搜索,并没有关于填写 set_mode 部分的信息。
二、set_mode()
是pygame包的显示模块的一个功能。如何调用嵌套在另一个函数中的函数?我怎么能用print"hi"
这个函数调用(试过但得到一个AttributeError):
def f():
def g():
print "hi"