uaveiro-leci/1ano/fp/aula04/table.py

8 lines
335 B
Python
Raw Normal View History

2022-10-14 22:03:25 +00:00
# Show a table of the squares of the first four numbers
print(" {:2s}| {:2s}| {:2s}".format("n", "", "2**n"))
for n in range(1, 21):
print("{:2d} | {:3d} |{:8d}".format(n, n**2, 2**n))
# Modify the program to show the squares of 1..20. (Use the range function.)
# Also, add a column to show 2**n. Adjust the formatting.