我想问一个简单的问题我在python中使用线程但只在使用TCP发送时 所以我的代码
class myThread(threading.Thread):
def __init__ (self):
threading.Thread.__init__(self)
def run(self):
#time.sleep(30)
print "File will be sent now"
from ftplib import FTP
ftp = FTP('192.168.1.3')
ftp.login('user', 'user')
file = open('Number', 'rb')
ftp.storbinary('STOR newNumber.txt', file)
我无法理解如何在真正的thread.read()中创建简单的读取线程,所以当它收到的东西它会把它放在一个字符串中我发现很多东西但我仍然没有得到python的编码方式
我想这将是三行,但我没有得到(读取,读取,读取,....)那些python方法。
我的问题可以让python的一个熟悉的人告诉我如何编写这些行吗? 我经常搜索,但事情对我来说有点复杂 the link I tried to understand for so long
提前致谢