Python的list去掉括号和引号

将[('1', '2', '3', '4', '5', '6'), ('1', '2', '3', '4', '5', '7'), ('1', '2', '3', '4', '6', '7'), ('1', '2', '3', '5', '6', '7'), ('1', '2', '4', '5', '6', '7'), ('1', '3', '4', '5', '6', '7'), ('2', '3', '4', '5', '6', '7')]变换成如下形式:
1 2 3 4 5 6
1 2 3 4 5 7
1 2 3 4 6 7
1 2 3 5 6 7
1 2 4 5 6 7
1 3 4 5 6 7
2 3 4 5 6 7

mlist=[('1', '2', '3', '4', '5', '6'), ('1', '2', '3', '4', '5', '7'), ('1', '2', '3', '4', '6', '7'), ('1', '2', '3', '5', '6', '7'), ('1', '2', '4', '5', '6', '7'), ('1', '3', '4', '5', '6', '7'), ('2', '3', '4', '5', '6', '7')]
for mtuple in mlist:
    for item in  mtuple:
        print item,
    print

温馨提示:内容为网友见解,仅供参考
第1个回答  2018-10-25
a=[('1', '2', '3', '4', '5', '6'), ('1', '2', '3', '4', '5', '7'), ('1', '2', '3', '4', '6', '7'), ('1', '2', '3', '5', '6', '7'), ('1', '2', '4', '5', '6', '7'), ('1', '3', '4', '5', '6', '7'), ('2', '3', '4', '5', '6', '7')]

for i in range(len(a)):
    pring(str(a[i][0:]).replace("(",'').replace("'",'').replace(',',' ').replace(')',''))


第2个回答  2017-02-24
你要变换成什么,你现在是一个list,转换成一个字符串?本回答被提问者采纳

Python的list去掉括号和引号
mlist=[('1', '2', '3', '4', '5', '6'), ('1', '2', '3', '4', '5', '7'), ('1', '2', '3', '4', '6', '7'), ('

python中如何去掉一个列表内的单引号
str([['1\/2', '1\\n'], ['1\/3', '1']]).replace("'","").replace(r"\\n","")

python中为什么这个list里的元素可以不用单引号吗?这list里的元素有哪些...
list是创建数值列表,后面 不是字符,所以不用加引号。

怎么将这个python的程序的引号和括号去掉?变成符合题意的答案
把return 那句改成 return ''.join(str_str_copy)合并两个列表,再转成字符串

python的list为什么有引号?
像换行这些需要转义的符号,需要在前面添加转义符\\,比如 print "\\n\\r" 如果输出双引号,可以转义,也可以用单引号把双引号包含起来 print "\\"" print '"' 输出单引号,同理可以用双引号将单引号包含起来 print "'"

python 怎么去掉列表内一组数的单引号
numbers[i] = int(v)print(numbers)方法2:numbers = ['-57', '13', '46', '-59', '0', '32', '27', '49', '11', '-12', '-10', '-42', '-39']print(numbers)numbers = [ int(x) for x in numbers ]print(numbers)方法3:numbers = ['-57', '13', '46', ...

Python中的列表
列表(list)是Python中一个非常重要的类型,用于管理一组数据,列表的形式如下所示 country = ['China', 'Germany', 'Russia', 'America']1)数据包含在引号中,Python中单引号和双引号具有相同的作用 2)使用逗号分隔数据,整个列表包含在一个中括号中 3)适用赋值操作符将一个列表赋值给一个...

pythonstrip怎样去引号
1. Python 中的 `strip()` 方法用于去除字符串首尾指定的字符。如果不传递参数,它默认会去除首尾的空白字符,如空格、制表符等。例如:`' head tail '.strip()` 会去除字符串首尾的空白符,结果为 `'head tail'`。2. 如果要去除字符串中的双引号,可以传递一个字符串参数到 `strip()` 方法...

pythonstrip怎样去引号
```python '"head tail"'.strip('"') # 去除双引号 ```如果需要去除所有的引号,包括单引号和双引号,可以使用 `replace()` 方法。这个方法会替换字符串中指定的字符,这里的指定字符是空白字符,可以用任意字符替换它们。例如:```python ' head tail '.replace(' ', '') # 去除所有的...

python strip怎样去引号
python 字符串中的strip方法只能在首尾去除参数中指定的字符,不传参数默认是去除首尾的空白符 ' head tail '.strip()#去除首尾空白符 ' "head tail "'.strip('"')#去除双引号如果要去除所有的引号,得用字符串的replace方法 ' head tail '.replace(' ','')#去除所有空白符 '"head" and "...

相似回答