Skip to content

Commit 31704a3

Browse files
committed
string to char list conversion
1 parent 684a9ff commit 31704a3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

String_toCharList.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
def input_string(str):
2+
return list(str)
3+
4+
print(input_string("Hello World"))

0 commit comments

Comments
 (0)