Write a Python program to multiply two numbers and print it
Topic: Write a Python program to multiply two numbers and print it
Solution
num1 = 1.5 num2 = 6.3 product = num1 * num2 print(f'product: {product}')
List all Python Programs
Solution
num1 = 1.5 num2 = 6.3 product = num1 * num2 print(f'product: {product}')