Computer Science, asked by apoorvashankar21, 5 months ago

Write a program to read account details like account number , name , pin number. if matches print user entered correct then print details otherwise ask user to enter correct details​

Answers

Answered by Anonymous
2

Answer:

Inputting Data

If you want the user to enter data into the program, you can use the input() function. An example of code that will ask the user to enter their name and display it on screen using print() is shown below:

name = input("What is your name? ") # displays the message on screen and stores the input from the user in a variable called name

print("Hi "" +name)

Explanation:

Hope it helps you.... :)

Similar questions