File: LP6E/Chapter03/script1.py

# A first Python script
import sys                  # Load a library module
print(sys.platform)
print(2 ** 100)             # Raise 2 to a power
x = 'Hack!'
print(x * 8)                # String repetition



[Home page] Books Code Blog Python Author Train Find ©M.Lutz