0
저는 파이썬에 익숙하지 않습니다. "pexpect"예제 repo에서이 코드 조각을 발견했습니다. 나는 필요한 변화를했다. 그러나 "TypeError"를 던지고 있습니다. 이유를 알아낼 수 없습니다. 왜 그런지 설명 할 수 있습니다. 어떻게 해결할 수 있습니까?pexpect : TypeError : "+ : 'float'및 'str'에 대해 지원되지 않는 피연산자 유형"
"PDB"PDB에 "아이 = ssh_command (사용자, 호스트, 비밀번호)"
오류에 오류를 발행했다 :
TypeError: "unsupported operand type(s) for +: 'float' and 'str'"
코드 아래 줄입니다
import pexpect
def ssh_command(user, host, password):
new_sshkey = 'Are you sure you want to continue connecting'
child = pexpect.spawn('ssh %[email protected]%s' %(user, host))
i = child.expect(new_sshkey, 'password: ')
if i == 0:
print 'ERROR.! SSH could not login.'
print child.before, child.after
if i == 1:
child.sendline('yes')
child.expect('password: ')
i = child.expect('password: ')
if i == 0:
print 'ERROR.! Permission Denied'
print child.before, child.after
return child
def main():
host = raw_input('Hostname: ')
user = raw_input('Username: ')
password = raw_input('Password: ')
child = ssh_command(user, host, password)
child.expect(pexpect.EOF)
print child.before
if __name__ == '__main__':
try:
main()
except Exception, e:
print str(e)