IDLE Python IDE

The IDLE IDE (Integrated Development Environment) is included with the Raspbian image. Starting Programming With IDLE Run IDLE which will open the Python Shell window. Select Menu > File > New Window Write your program, e.g. #!/usr/bin/python print “Hello!”; To run it select Menu > Run > Run Module and you should see “Hello!” appear […]

Read More