美文网首页
通过python依次将300个文件内容放入剪切板clipboar

通过python依次将300个文件内容放入剪切板clipboar

作者: mztkenan | 来源:发表于2017-05-05 14:16 被阅读153次

    问题描述:

    300个文件,通过python依次将每个文件内容放入剪切板clipboard

    js代码:

    import os
    #from Tkinter import Tk
    for i in range(228,325):
        #with open(str(i)+".txt","r") as f:
           # txt=f.read()
            command="type "+str(i)+".txt | clip"
            os.system(command)
            #print(txt)
            raw_input("go on?next is"+str(i+1))
    
    

    注意事项

    1.通过raw_input暂停复制
    2.python2.7与3差别还得挺大,3中input合并了raw_input功能;system的command的功能也不太相同,在stackoverflow上看到的两个都不能用
    3.注释的部分是3的内容

    相关文章

      网友评论

          本文标题:通过python依次将300个文件内容放入剪切板clipboar

          本文链接:https://www.haomeiwen.com/subject/havftxtx.html