python代码编程教学无限循环_Python:如何在无限循环运行时从控制台获取输入?...

博客介绍了如何在Python中创建一个简单的IRC客户端,并解决在读取数据时无法同时输入的问题。通过引入线程,创建了一个InputThread类,允许在无限循环中读取数据的同时,用户能够按Enter键输入文本,实现了并发操作。
摘要由CSDN通过智能技术生成

我正在尝试编写一个简单的

Python IRC客户端.到目前为止,我可以读取数据,如果自动化,我可以将数据发送回客户端.我在一段时间内得到数据为True,这意味着我无法在读取数据的同时输入文本.如何在控制台中输入文本,只有在按Enter键时才会发送文本,同时运行无限循环?

基本代码结构:

while True:

read data

#here is where I want to write data only if it contains '/r' in it

最佳答案 另一种方法涉及线程.

import threading

# define a thread which takes input

class InputThread(threading.Thread):

def run(self):

self.daemon = True

while True:

self.last_user_input = input('input something: ')

# do something based on the user input here

# alternatively, let main do something with

# self.last_user_input

# main

it = InputThread()

it.start()

while True:

# do something

# do something with it.last_user_input if you feel like it

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值