0
複数の関数で使用される単一のTelnetオブジェクトを作成したい。Pythonで複数の関数用に単一のTELNETオブジェクトを作成する
tn = (Telnet object declaration only)
def Function1(): #for connection only
tn = telnetlib.Telnet(ip)
#code
def Function2(): #to run command 1
tn.write()
def Function3(): #to run command 2
tn.write()
Function1() #Call for telnet connection
Function2() #Call to execute command 1
Function3() #call to execute command 2
どのような解決方法がありますか?