- 1
[SOLVED]Is this meant to work?
Or have I done something wrong? http://www.sololearn.com/app/JUMP_LINK__&&__python__&&__JUMP_LINK/playground/cUzEZPN1j026/ If link doesn't work, paste it onto Chrome and it will.
2 Answers
+ 6
Post correct links to your code (that's not the first time):
https://code.sololearn.com/cUzEZPN1j026/?ref=app
And be more respectuous of time people spend for you (I refer to your last question/code...)
a=["This ","has no ","commas."]
b=str(",".join(a))
print(b)#before
#c=len(a)-1
#for i in range(c):
# b.replace(',','')
b=b.replace(',','')
print(b)
(I don't provide more explanation, as you seems to not care :P)
0
Ok thx and now I realised what you mean by correct link.