Skip to content

Commit 78b1967

Browse files
committed
list to string
1 parent 9895c35 commit 78b1967

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

list-to-string.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
x = ['Hello', 'World', ',', 'How', 'are', 'you', '?']
2+
y = ''.join(x)
3+
print(y)

0 commit comments

Comments
 (0)