t1: (‘a’, ‘b’, ‘c’, ‘d’, ‘e’)
s1: a_b_c_d_e
2.混合数据类型元组转字符串
t1 = ('a','b',1,2,'e')
s1 = '_'.join(map(str, t1))
print('t1:',t1)
print('s1:',s1)
t1: (‘a’, ‘b’, 1, 2, ‘e’)
s1: a_b_1_2_e
3.元组转列表
t1 = ('a','b','c','d','e')
l1 = list(t1)
print('t1:',t1)
print('l1:',l1)
t1: (‘a’, ‘b’, ‘c’, ‘d’, ‘e’)
l1: [‘a’, ‘b’, ‘c’, ‘d’, ‘e’]
1.单一字符串型元祖转字符串t1 = ('a','b','c','d','e')s1 = "_".join(t1)print('t1:',t1)print('s1:',s1)t1: (‘a’, ‘b’, ‘c’, ‘d’, ‘e’)s1: a_b_c_d_e2.混合数据类型元组转字符串t1 = ('a','b',1,2,'e')s1 = '_'.join(map(str, t1...
List1=[1,2,3,4,5,6]
print ("Str1 tuple List的类型依次是 %s __%s__%s"%(type(Str1),type(tuple1),type(List1)))
#将列表转换为字符串
但是元组不可以直接转换为array或者list。必须转换为迭代器
通过对元组调用productIterator方法,转换为迭代器类型,进而调用mkString方法。
scala> val s = (1,2,3)
s: (Int, Int, Int) = (1,2,3)
scala&g
要将一个元组转换为字符串,你可以使用字符串的 `join()` 方法。首先,使用 `map()` 函数将元组中的所有元素转换为字符串,然后将它们连接起来。以下是一个示例代码:
```python
my_tuple = ('Hello', 'World', '!')
my_string = ''.join(map(str, my_tuple))
print(my_string)
输出结果将会是:
HelloWorld!
在上述代码中,`map(str, my_tuple)` 将元组 `my_tuple` 中的每个元素都转换为字符串类型。然后,`''.join()` 将这些字符串连接起来,并使用空字符串作为连接符。最后,将结果赋值给变量 `my_string` 并打印出来。