Write a Python program that accepts an integer (n) and computes the value of n+nn+nnn.
I have used python 3.7 compiler for debugging purpose.
a = int(input("Input an integer : ")) num1 = int( "%s" % a ) num2 = int( "%s%s" % (a,a) ) num3 = int( "%s%s%s" % (a,a,a) ) print (num1+num2+num3)
Result:
Input an integer : 5
615
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
I have used python 3.7 compiler for debugging purpose.
Result:
Input an integer : 5
615
need an explanation for this answer? contact us directly to get an explanation for this answer