Python进程中的Raw_input [英] Raw_input inside a Python process

查看:75
本文介绍了Python进程中的Raw_input的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在python中创建了一个小脚本,我想在其中使用多处理功能同时执行两个函数.第一个功能将执行目录递归搜索,第二个功能将向用户显示一些问题.尽管创建了.txt文件,但问题并未出现.我已经看到了以下问题:进程中的Python命令行输入,但是作为一个初学者,我不明白问题是什么以及如何解决.这是我的脚本:

I have created a small script in python where I want to execute two function on the same time using multiprocessing. The first function would do a directory recursive search and the second one will display some questions to the user. Although the .txt file is created the question doesn't appear. I have seen this question: Python command line input in a process but as a beginner I did not understand what is the problem and how to solve it. Here's my script:

import os
import thread
import time
from multiprocessing import Process

def writeFiles():
    #open a file for writing files in it
    f = open("testFile.txt","w")
    #do the walk
    for root ,dirs,files in os.walk('C:\\Users'):
        for dir in dirs:        
            if dir.startswith('Test'):
                for root ,dirs,files in os.walk('C:\\Users\\' + dir +'\Desktop'):
                    for file in files:
                        if file.endswith('.txt'):                        
                            #include the full path
                            f.write( os.path.join(root, file + "\n") )

    #close the file
    f.close()

def ask():
    a = raw_input('Your name? ')
    if a == 'Tester':
        print 'Hello'
    else:
        print 'Bye'   


if __name__ == '__main__':   

# create processes
p1 = Process( target = writeFiles)
p2 = Process( target = ask)
p1.start()
p2.start()

推荐答案

最简单的方法是从主流程本身调用ask:

The simplest thing to do would be to call ask from the main process itself:

if __name__ == '__main__': 
    p1 = Process(target = writeFiles)   
    p1.start()
    ask()

或者您可以使用线程:

import threading
import multiprocessing as mp
import sys

def ask(stdin):
    print 'Your name? ',
    a = stdin.readline().strip()
    if a == 'Tester':
        print 'Hello'
    else:
        print 'Bye'   
    stdin.close()

def writeFiles():
    pass

if __name__ == '__main__': 
    p1 = mp.Process(target=writeFiles)   
    p1.start()
    t1 = threading.Thread(target=ask, args=(sys.stdin,))
    t1.start()
    p1.join()
    t1.join()


或者,您可以使用os.dup J.F. Sebastian在此处显示的:

import multiprocessing as mp
import sys
import os

def ask(stdin):
    print 'Your name? ',
    a = stdin.readline().strip()
    if a == 'Tester':
        print 'Hello'
    else:
        print 'Bye'   
    stdin.close()

def writeFiles():
    pass

newstdin = os.fdopen(os.dup(sys.stdin.fileno()))

if __name__ == '__main__': 
    p1 = mp.Process(target=writeFiles)   
    p1.start()
    p2 = mp.Process(target=ask, args=(newstdin,))
    p2.start()
    p1.join()
    p2.join()

这篇关于Python进程中的Raw_input的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆