解决TypeError: 'in ' requires string as left operand, not int

原因在与格式没对齐

username = 'root'
tn.write(username + str('\n'))

这样就会报错

改成tn.write(username.encode('ascii')+str('\n'))即可

希望能帮到大家

你可能感兴趣的:(解决TypeError: 'in ' requires string as left operand, not int)