Python Forum
Python Forum
>
Python Coding
>
General Coding Help
> list of strings to a single string
Full Version:
list of strings to a single string
You're currently viewing a stripped down version of our content.
View the full version
with proper formatting.
Pages:
1
2
wavic
Nov-04-2016, 10:00 AM
I do not have Windows box to test a code for compatibility
Aadi
Nov-04-2016, 10:12 AM
def func1(los): for i in los: print(i,end='') return pass list1=['a','b','c'] func1(list1)
wavic
Nov-04-2016, 01:10 PM
Use Python code tags to preserve indentation
Pages:
1
2
Python Forum
>
Python Coding
>
General Coding Help
> list of strings to a single string