

InterviewSolution
Saved Bookmarks
1. |
Write a program in Python to input the values for a and b by the user . Find and display the a/b |
Answer» a = int(input("enter a number :"))b = int(input(\'enter a number \':))c = a/bprint(a,"/",b,"=",c) | |