Passion/Python 81

struct

python 에서는 binary packing 을 위해서 struct 라는 모듈을 제공한다. 문자 바이트 순서 크기와 정렬 @ 시스템에 따름 = 시스템에 따름 없음 Big endian 없음 ! 네트워크 (Big endian) 없음 FormatC TypePython typeStandard sizeNotesxpad byteno value ccharstring of length 11 bsigned charinteger1(3)Bunsigned charinteger1(3)?_Boolbool1(1)hshortinteger2(3)Hunsigned shortinteger2(3)iintinteger4(3)Iunsigned intinteger4(3)llonginteger4(3)Lunsigned longinteger4(3)..

Passion/Python 2015.03.23

python 2.4 버전에서 mail 보내기 예제

Python 에서 smtp를 이용하여 메일 보내기 예제 # Import smtplib for the actual sending function import smtplib # Import the email modules we'll need from email.MIMEText import MIMEText # Open a plain text file for reading. For this example, assume that # the text file contains only ASCII characters. fp = open(textfile, 'rb') # Create a text/plain message msg = MIMEText(fp.read()) fp.close() # me == the sender's..

Passion/Python 2012.11.13