私はそのような文字のタプルを持っています:
('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e')
次のように文字列に変換する方法
'abcdgxre'
str.join
を使う:
>>> tup = ('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e')
>>> ''.join(tup)
'abcdgxre'
>>>
>>> help(str.join)
Help on method_descriptor:
join(...)
S.join(iterable) -> str
Return a string which is the concatenation of the strings in the
iterable. The separator between elements is S.
>>>
これがjoinを使う簡単な方法です。
''.join(('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e'))
これは動作します:
''.join(('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e'))
それは作り出すでしょう:
'abcdgxre'
コンマのような区切り文字を使って次のものを生成することもできます。
'a,b,c,d,g,x,r,e'
使用して:
','.join(('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e'))
最も簡単な方法は、このようにjoinを使うことです。
>>> myTuple = ['h','e','l','l','o']
>>> ''.join(myTuple)
'hello'
これは、あなたの区切り文字が本質的に何もなく、空白スペースでもないためです。