Skip to content

Commit 58a1524

Browse files
authored
Merge pull request #104 from sjdex/shubham
string to char list conversion
2 parents 684a9ff + 31704a3 commit 58a1524

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)