Posts by Z3quiTeo • 1 point
1 post
-
-3
votes1
answer42
viewsQ: how to turn the list into a single string
I would like my code to result instead of a list a single string Ex: n = 5 the code returns me [1, 2, 3, 4, 5] I would like it to return me '12345' transforming all elements into a single string.…