0
How to get output without brackets & commas ?
words=["python" , "fun"] words.insert(1,"is") print(words) >>> ["python","is","fun"] But i want >>> python is fun
1 Réponse
+ 4
delimter=" "
print(delimeter.join(words))
words=["python" , "fun"] words.insert(1,"is") print(words) >>> ["python","is","fun"] But i want >>> python is fun