2024FALLcse160Lectures/bigos/lecture2024112/try01.py

9 lines
153 B
Python

data1 = float(input("Enter the dividend "))
data2 = float(input("Enter the divisor "))
quotient = data1/data2
print(f"{data1}/{data2} = {quotient}")