Login
Remember
Register
Ask a Question
What is the output of the following?
0
votes
asked
Jun 13, 2019
in
Python
by
Derya
What is the output of the following?
string = "my name is x"
for i in string.split():
print (i, end=", ")
a. m, y, , n, a, m, e, , i, s, , x,
b. error
c. my, name, is, x,
d. m, y, , n, a, m, e, , i, s, , x
#python
#java
#python-tutorial
#ball-python
Python-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 11, 2019
by
rajeshsharma
answer is a
m, y, , n, a, m, e, , i, s, , x,
...