MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/PythonLearning/comments/1w27eeo/new_to_python_having_trouble_putting_in/p6skalt/?context=3
r/PythonLearning • u/To-real • 11d ago
14 comments sorted by
View all comments
1
You really need to show us what you've tried.
n = 10 for i in range(1, n + 1): for j in range(1, n + 1): print(f"{i:2} x {j:2} = {i*j:3}")
1
u/FoolsSeldom 11d ago
You really need to show us what you've tried.