Thursday, 4 February 2016

Creating a .py file




#Let´s repeat previous lesson. We are going to create a Python document call test.py. We will use it for experimenting.

#Open Python
#File > New > Save > test.py
#Close Python
#Find test.py > right click > IDLE Editor
#Try it out, copy this.

a = 7
print (a)


#Click F5
#Say Yes to Save
#Position the two windows comfortably (IDLE on left, the Shell on right)
 

#Done! You are now ready for more challenging stuff.