“Python Multiply 2 переменные” Ответ

умножение двух или более чисел в Python

# multiplication of two or more numbers
def multiple(*a):
    result = 1
    for i in a:
        result = result * i
    return result


# insert any number of arguments for multiplication, example:
res = multiple(12, 2, 5)
print(res)
# In this example, code output is = 120
Important Ibis

Python Multiply 2 переменные

num1 = "2" # first variable
num2 = "2" # second variable
output = num1*num2 # multiplied number

# Optional: print multiplied number
print(output)
Arrogant Anaconda

Ответы похожие на “Python Multiply 2 переменные”

Вопросы похожие на “Python Multiply 2 переменные”

Смотреть популярные ответы по языку

Смотреть другие языки программирования