This repository has been archived on 2025-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
python_it_top/Practica3/task1_rpo254.py

14 lines
354 B
Python
Raw Normal View History

2025-09-22 13:46:31 +05:00
#!/usr/bin/env python
a = int(input())
b = 1
while b < 10:
print(f"{a} * {b} = {a*b}")
b += 1
2025-09-18 19:22:01 +05:00
2025-09-22 13:46:31 +05:00
# Через for i можно реализовать полную таблицу умножения
#for i in range(1, 10 + 1):
# for b in range(1, 10 + 1):
# n = i * b
# print("{} * {} = {}".format(i, b, n))
# print("-=-=-=-=-")