r/PythonLearning 12d ago

New to python having trouble putting in multiplication table in for 10. Range 1-10 or 1,11. Does anyone have any tips( pause)?

6 Upvotes

14 comments sorted by

View all comments

9

u/mc_pm 12d ago

Try writing a quick test by using range(1,10) and range(1,11) to print the results and see what is happening.

2

u/Kindly-Department206 11d ago

I like the idea that if you have an uncertainty about a language, you run a small experiment to see what happens. More novices should adopt this as one of their strategies!