0
qw="you are a hero" d=qw.split(' ') print(d) c=qw.join("+") print(c)
What is a error in this,can any one help me.
1 Resposta
+ 1
What your trying to get here? mention that also..
c="+".join(qw)
print(c)
c="+". join'(d)
print(c)
What is a error in this,can any one help me.