Prince-linux / python-learning

for learning Python
MIT License
1 stars 0 forks source link

create program: multiply #20

Open lcabrini opened 9 years ago

lcabrini commented 9 years ago

This issue depends on #16

Create a program called multiply.py in the folder src/multiply. Let it print out a multiplication table for the number passed in on the command-line from 0 to 12. For example, if I called the program with 3, I should get the following:

./multiply.py 3
0 * 3 = 0
1 * 3 = 3
2 * 3 = 6
3 * 3 = 9
4 * 3 = 12
...
...
12 * 3 = 36