Python
Intro
Python 2 and 3 differences
print "fred" // OK Python 2
print("fred") // Not OK Python 2
Whitespace
Uses four spaces instead of brackets e.g.
for i in range(5):
x = i * 10
print(x)
print "fred" // OK Python 2
print("fred") // Not OK Python 2
Uses four spaces instead of brackets e.g.
for i in range(5):
x = i * 10
print(x)