0 votes
in Python by
What is the output of the following code snippet?

for char in 'Welcome':
    print (char, end='*')
print()
1)Error

2)W*e*l*c*o*m*e*

3)Welcome*******

4)Welcome*
...