for i in range(-10, 10):
quotient = i *2
print(f"{i} умножить на два = {int(quotient)}.")
Объяснение:
for i in range(-10, 10):
quotient = i *2
print(f"{i} умножить на два = {int(quotient)}.")
Объяснение: