Computer Science, asked by rithikareddy4361, 2 months ago

Str1="welcome"Print(str1*4) output

Answers

Answered by allysia
4

Language:

Python

Corrected program:

str1="welcome"

print(str1*4)

Output:

welcomewelcomewelcomewelcome

Similar questions