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)
You can read the documentation here
https://pypi.python.org/pypi/SimpleGUITk
Instead of
you should use
Reference: How to integrate SimpleGUI with Python 2.7 and 3.0 shell
Please check this link also