Python:TypeError:*之后的参数必须是一个序列

前端之家收集整理的这篇文章主要介绍了Python:TypeError:*之后的参数必须是一个序列前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这段代码,我尝试在新线程中发送UDP数据报
import threading,socket

address = ("localhost",9999)


def send(sock):
    sock.sendto("Message",address)
    print "sent"

s = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
threading.Thread(target=send,args=(s)).start()

但是当我尝试将套接字作为函数的参数时,会抛出一个TypeError异常:

Exception in thread Thread-1:
Traceback (most recent call last):
  File "/usr/lib/python2.7/threading.py",line 810,in __bootstrap_inner
    self.run()
  File "/usr/lib/python2.7/threading.py",line 763,in 
    self.__target(*self.__args,**self.__kwargs)
TypeError: send() argument after * must be a sequence,not _socketobject

那意味着什么?

解决方法

你需要在变量s之后添加一个逗号 –,– .只发送s到args =()试图解包一些参数,而不是发送那个单一的争论.

所以你有线程.Thread(target = send,args =(s,)).start()

另外,splat – * – 运算符在this问题中可能很有用,它解释了它的用法和解压缩参数

原文链接:https://www.f2er.com/python/186305.html

猜你在找的Python相关文章