Q4. Write a Python Program to input a single digit (n). Create a three digit number
as <n(n+1)(n+2)> . Print this three digit number created.
Assume that the input digit is in the range 1-7.
Include proper messages and comments in your program.
For example: - if n=4 then three digit number formed is 456.
Answers
Answered by
1
Answer:
A python program to input a single digit number and print its 3 digit number created as (n(n+1)(n+2)).
Similar questions