我正在 Google App Engine 中试验简单的 Hello World 应用程序。我想创建一个单独的类,我将在 main.py 中导入并使用它。
主要.py:
import helloWorld
helloWorld.hi()
你好世界.py:
class helloWorld():
def hi():
print 'Content-Type: text/plain'
print ''
print 'Hello, world!'
什么是解决这个问题的方法?