from ftplib import FTPf = FTP('ftp.python.org')f.login('anonymous', '-help@python.org')f.dir()f.retrlines('RETR motd')f.quit()