I am learning python from coursera. They are using CodeSkulptor(http://www.codeskulptor.org/) as IDE. I want to write the same program in Pycharm. I am unaware of inbuilt GUI packages in PyCharm(Python 2.7). I want to convert below code. Please provide me some useful URL's/Important info.
Here is my code:
# 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)