摘要:
import paramiko ssh=paramiko.SSHClient() know_host=paramiko.AutoAddPolicy() ssh.set_missing_host_key_policy(know_host) ssh.connect( hostname="10.10.21.82", port=22, username="root", p... 阅读全文
摘要:
import socket #socket采用cs结构,client and Server B/S browser and server sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM) #family 族 # socket.AF_INET ip # socket.AF_INET6... 阅读全文
摘要:
#冒泡排序list1=[2,4,5,6,7,8,9,11,30,35,38,41,42] def bubble_sort(list): for i in range(len(list)-1): for j in range(len(list)-1-i): if list[j]>list[j+1]: list[j],l... 阅读全文
摘要:
#冒泡排序list1=[2,4,5,6,7,8,9,11,30,35,38,41,42] def bubble_sort(list): for i in range(len(list)-1): for j in range(len(list)-1-i): if list[j]>list[j+1]: list[j],l... 阅读全文
摘要:
元类 阅读全文
摘要:
python环境部署 我们今天学习的内容是如何将Django项目部署到linux服务器上,我们部署的linux系统是centos7首先,我们先在linux上搭建我们的Python3环境: 在这里首先强调一下,Centos7系统自带的Python2我们不要删除,我们要做的是在Python2和pytho 阅读全文