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

x = 'abcd'
for i in x:
    print(i.upper())

a. A B C D
b. a b c d
c. a B C D
d. error

Related questions

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