我正在從coursera學習python。他們使用CodeSkulptor(http://www.codeskulptor.org/)作爲IDE。 我想在Pycharm中編寫相同的程序。 我不知道PyCharm(Python 2.7)中的內置GUI包。 我想轉換下面的代碼。請提供一些有用的網址/重要信息。將CodeSkulptor轉換成PyCharm
這裏是我的代碼:
# define event handlers for control panel
def foo():print "hello world!!!"
# create frame
f = simplegui.create_frame("Guess The Number",300,300)
f.add_button("Range [0,100)", foo, 150)
f.add_button("Range [0,1000)", foo, 150)
f.add_input("Enter a guess", foo, 150)
可能重複(http://stackoverflow.com/questions/16387770/how- [如何SimpleGUI與Python 2.7和3.0外殼集成] to-integrate-simple-python-2-7-and-3-0-shell) – OPi