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*

Related questions

0 votes
asked Jun 13, 2019 in Python by Derya
0 votes
asked Jun 13, 2019 in Python by Derya
...