In this program, we will take a string as input and print a string 3 times.
Steps to remove the program
- Take a string as input.
- Print the given string 3 times using ‘*‘.
#Input string
str1 = "sqatools"
#Printing output
print(str1*3)
Output :
sqatoolssqatoolssqatools