python:实现FTP发送接收ftp send receive
from ftplib import FTP
ftp = FTP("xxx.xxx.x.x") # Enter the ip address or the domain name here
ftp.login(user="username", passwd="password")
ftp
from ftplib import FTP
ftp = FTP("xxx.xxx.x.x") # Enter the ip address or the domain name here
ftp.login(user="username", passwd="password")
ftp