Таблица умножения с тремя строками кода в Python

Q = int(input("Enter Format: "))
for i in range(0,11, 1):
    print("{0} x {1} = {2}".format(i, Q, i*Q))
VinCoD