CodeSkulptor 与本地 python 程序的差别
#
开头,是注释,运行时会被忽略
print
将后面的内容输出到控制台
代码示例
store = 12
operand = 3def output():
print "Store = ", store
print "Operand = ", operand
print ""def swap():
global store, operand
store, operand = operand, store
output()output()
swap()
swap()
CodeSkulptor下选取 docs 进入 documentation 页面,然后在 Graphics 的菜单里可以看到 SimpleGUI Module — Frame d 相关选项