我有一个Colors列表,它也是我的sqlite3数据库表中的列。 在任何时候都进行输入,选择一种颜色,以便记录日期列和一个颜色列,将其他列保留为空。 现在我想调用条目和日期,并用相应的颜色(列)附加它。语法应该如何?有人可以帮忙吗?
>>> ssh = paramiko.SSHClient()
>>> ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
>>> ssh.connect(IP,22,usname,pswd)
>>> stdin, stdout, stderr = ssh.exec_command('/home/scripts/a.sh')
>>> stdout.channel.recv_ready()
False
>>> stdout.channel.recv_ready()
False
>>> stdin, stdout, stderr = ssh.exec_command('/home/scripts/a.sh')
>>> stdin, stdout, stderr = ssh.exec_command('ls')
>>> stdout.channel.recv_ready()
True