Answers for "How to multiply a text in python"

2

how to multiply a string in python

#Python 2.x:
#print 'string' * (number of iterations)
print '-' * 3


#Python 3.x:
#print ('string' * (number of iterations))
print('-' * 3)
Posted by: Guest on May-19-2021
4

how to multiply in python

Multiply two integer numbers

num1=int(input("Enter the first number: "))
#input value for variable num1
num2=int(input("Enter the second number: "))
#input value for variable num2
mul=num1*num2;
#perform multiplication operation
print("the product of given numbers is: ",mul)
#display the product
  
When the above code is compiled and executed, it produces the following results
Enter the first number: 23
Enter the second number is: 32
the product of the given numbers is 736
Posted by: Guest on April-01-2020
0

How to multiply a text in python

text = "Hello World"
times = 3
repeated = text * times
print('Not Repeated: ', text)
print('Repeated: ', repeated)
Posted by: Guest on October-25-2021

Code answers related to "How to multiply a text in python"

Python Answers by Framework

Browse Popular Code Answers by Language