直接调试成功的代码实例一
时间:2009-03-06 来源:hkebao
1. 字典类型的进行排序操作
sampledict_str = {'blue':'[email protected]',
'allen':'[email protected]',
'sophia':'[email protected]',
'ceen':'[email protected]'}
print sampledict_str
print sorted(sampledict_str.items(), key=lambda d: d[0]) #按照KEY值进行排序操作
print sorted(sampledict_str.items(), key=lambda d: d[1]) #按照VALUE值进行排序的操作
以后如果需要进行这种类型的排序操作的话就可以直接这样写代码了哦非常方便的
2.Python实现对POP3收取邮件的代码如下:
import poplib
emailServer = poplib.POP3('pop3.789.net')
emailServer.user('zhou789')
emailServer.pass_('456654')
emailServer.set_debuglevel(1)
serverWelcome = emailServer.getwelcome()
print serverWelcome
emailMsgNum,emailSize = emailServer.stat()
print 'email number is%d and size is%d'%(emailMsgNum,emailSize)
for i in range(emailMsgNum):
for piece in emailServer.retr(i+1)[1]:
if piece.startswith('Subject'):
print '\t'+piece
break
emailServer.quit()
直接在命令行中运行就OK 了!非常简单的哦!
sampledict_str = {'blue':'[email protected]',
'allen':'[email protected]',
'sophia':'[email protected]',
'ceen':'[email protected]'}
print sampledict_str
print sorted(sampledict_str.items(), key=lambda d: d[0]) #按照KEY值进行排序操作
print sorted(sampledict_str.items(), key=lambda d: d[1]) #按照VALUE值进行排序的操作
以后如果需要进行这种类型的排序操作的话就可以直接这样写代码了哦非常方便的
2.Python实现对POP3收取邮件的代码如下:
import poplib
emailServer = poplib.POP3('pop3.789.net')
emailServer.user('zhou789')
emailServer.pass_('456654')
emailServer.set_debuglevel(1)
serverWelcome = emailServer.getwelcome()
print serverWelcome
emailMsgNum,emailSize = emailServer.stat()
print 'email number is%d and size is%d'%(emailMsgNum,emailSize)
for i in range(emailMsgNum):
for piece in emailServer.retr(i+1)[1]:
if piece.startswith('Subject'):
print '\t'+piece
break
emailServer.quit()
直接在命令行中运行就OK 了!非常简单的哦!
相关阅读 更多 +