如何将列表中的多个元组写入单个文本文件

时间:2016-07-11 03:12:38

标签: list python-2.7 text tuples extraction

我有一个名单" m"多个元组。

enter image description here

每个元组都有两个字符串。图像中的元组0和元组1。

我想将所有奇数编号的元组(0,1,3 ....)存储在 SINGLE 文本文件中。

我尝试了以下代码。

from __future__ import print_function
    j = open('skills_list3.txt','w')
        mlen=len(m) #length of list
            mlen #mlen is 93


            index=1 #initiated with 1 so that only odd number of tuple extracted
            while index < mlen:
                sk=m[index]
                print (sk,file=j)
                index=index+2

我相信这是通过列表正确循环但我无法知道为什么所有元组都没有写入txt文件。

程序没有任何错误。

0 个答案:

没有答案