Skip to content

Commit c17d7e1

Browse files
authored
Merge pull request #108 from tyler-le/tle-list-to-string
list to string
2 parents 2d02299 + 78b1967 commit c17d7e1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

list-to-string.py

Lines changed: 3 additions & 0 deletions
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)