Skip to main content

Posts

Showing posts with the label #Write a Python program to perform input/output of all basic data types.

ads1

Python basic , 17.Write a Python program to perform input/output of all basic data types.

Write a Python program to perform input/output of all basic data types. a= int(input("Enter the int number :-  ")) b=float(input("Enter the float number :-")) name = input("Enter your name :- ") print("The int number you Entered :-",a) print("The float number you Entered :- ",b) print("The name you Enter :-",name) Output :- 

ads2