Yahoo Clever wird am 4. Mai 2021 (Eastern Time, Zeitzone US-Ostküste) eingestellt. Ab dem 20. April 2021 (Eastern Time) ist die Website von Yahoo Clever nur noch im reinen Lesemodus verfügbar. Andere Yahoo Produkte oder Dienste oder Ihr Yahoo Account sind von diesen Änderungen nicht betroffen. Auf dieser Hilfeseite finden Sie weitere Informationen zur Einstellung von Yahoo Clever und dazu, wie Sie Ihre Daten herunterladen.
Python: How to convert from list to string?
As I'm not certain how to go about it.
2 Antworten
- husoskiLv 7vor 4 Jahren
If you mean that you have a list of strings that you want to join into a single string, that's exactly what the .join() string method does. The syntax is <sep>.join(<strings>), where <strings> is a sequence of string values that you want to concatenation, and <sep> is a separator string copied to the result between adjacent input strings.
Examples, pasted from an Idle window:
>>> vowels = ['a', 'e', 'i', 'o', 'y']
>>> ''.join(vowels) # empty string as separator
'aeioy'
>>> ', '.join(vowels) # separate with comma and space
'a, e, i, o, y'
>>> ' - '.join(('x', 'o', 'x')) # works with other sequence types
'x - o - x'
>>> ' '.join('xyzzy') # a string is a sequence of characters
'x y z z y'