Install Python Step by Step
Install Python Step by Step
2. Install Sublime.
3. Run cmd. Type python > enter.
6. To save python coding, make sure the extension to save is .py. You can now try to type and
run simple programming.
Eg :
print("Hello, World!")
SIMPLE EXERCISE TO GET FAMILIAR WITH PYTHON
1. if 5 > 2:
print("Five is greater than two!")
if 5 > 2:
print("Five is greater than two!")
2. a = 4
A = "Sally"
print(a)
print(A)