81.1k views
5 votes
Write a simple program to read 3 numbers and display them in the manner shown below. the numbers are between 0 and 9

Input

123

Output

The first number is: 1
The second number is: 2
The third number is: 3

User Przemek K
by
8.1k points

1 Answer

0 votes

Answer: Here's a simple program in Python that reads in three numbers from the user and displays them as shown:

num = input("Enter three numbers between 0 and 9: ")

print("The first number is:", num[0])

print("The second number is:", num[1])

print("The third number is:", num[2])

This program first prompts the user to enter three numbers between 0 and 9, which are read in as a single string. It then uses indexing to extract each individual digit from the string and print them out with the appropriate labels. Note that since the input is not validated, this program assumes that the user enters exactly three characters, each of which is a valid digit between 0 and 9.

Step-by-step explanation:

User Bhanuka Manesha
by
7.9k points