摘要:
关于写excel的格式控制,比如颜色等等 Examples Generating Excel Documents Using Python’s xlwt Here are some simple examples using Python’s xlwt library to dynamically 阅读全文
摘要:
SMTP(Simple Mail Transfer Protocol)即简单邮件传输协议,它是一组用于由源地址到目的地址传送邮件的规则,由它来控制信件的中转方式。 python的smtplib提供了一种很方便的途径发送电子邮件。它对smtp协议进行了简单的封装。 Python创建 SMTP 对象语法 阅读全文
摘要:
1 def str_to_hex(s): 2 return ' '.join([hex(ord(c)).replace('0x', '') for c in s]) 3 4 def hex_to_str(s): 5 return ''.join([chr(i) for i in [int(b, 16) for b in s.split(' ')]]) 6 ... 阅读全文