web-dev-qa-db-ja.com

PythonはTupleを文字列に変換します

私はそのような文字のタプルを持っています:

('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e')

次のように文字列に変換する方法

'abcdgxre'
74
intel3

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.

>>>
123
iCodez

これがjoinを使う簡単な方法です。

''.join(('a', 'b', 'c', 'd', 'g', 'x', 'r', 'e'))
23
Back2Basics

これは動作します:

''.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'))
8
TruthSeeker

最も簡単な方法は、このようにjoinを使うことです。

>>> myTuple = ['h','e','l','l','o']
>>> ''.join(myTuple)
'hello'

これは、あなたの区切り文字が本質的に何もなく、空白スペースでもないためです。

1
W_water_m