pythonÀàÐÍת»»¡¢ÊýÖµ²Ù×÷
2008-12-21
pythonÀàÐÍת»»¡¢ÊýÖµ²Ù×÷
¹Ø¼ü×Ö: pythonÀàÐÍת»»¡¢ÊýÖµ²Ù×÷
pythonÀàÐÍת»»
Java´úÂë
º¯Êý ÃèÊö
int(x [,base ]) ½«xת»»ÎªÒ»¸öÕûÊý
long(x [,base ]) ½«xת»»ÎªÒ»¸ö³¤ÕûÊý
float(x ) ½«xת»»µ½Ò»¸ö¸¡µãÊý
complex(real [,imag ]) ´´½¨Ò»¸ö¸´Êý
str(x ) ½«¶ÔÏó x ת»»Îª×Ö·û´®
repr(x ) ½«¶ÔÏó x ת»»Îª±í´ïʽ×Ö·û´®
eval(str ) ÓÃÀ´¼ÆËãÔÚ×Ö·û´®ÖеÄÓÐЧPython±í´ïʽ,²¢·µ»ØÒ»¸ö¶ÔÏó
tuple(s ) ½«ÐòÁÐ s ת»»ÎªÒ»¸öÔª×é
list(s ) ½«ÐòÁÐ s ת»»ÎªÒ»¸öÁбí
chr(x ) ½«Ò»¸öÕûÊýת»»ÎªÒ»¸ö×Ö·û
unichr(x ) ½«Ò»¸öÕûÊýת»»ÎªUnicode×Ö·û
ord(x ) ½«Ò»¸ö×Ö·ûת»»ÎªËüµÄÕûÊýÖµ
hex(x ) &nbs
Ïà¹ØÎĵµ£º
ÈçºÎдһ¸ö·µ»Ø¶à¸öÖµµÄº¯Êý
º¯ÊýµÄreturn Óï¾äÖ»ÄÜ·µ»ØÒ»¸öÖµ£¬¿ÉÒÔÊÇÈκÎÀàÐÍ¡£
Òò´Ë£¬ÎÒÃÇ¿ÉÒÔ“·µ»ØÒ»¸ö tupleÀàÐÍ£¬À´¼ä½Ó´ïµ½·µ»Ø¶à¸öÖµ
”¡£
Àý: x ³ýÒÔ y µÄÓàÊýÓëÉ̵ĺ¯Êý
def F1 ( x, y ):
a = x % y
  ......
Programming Python, 2nd Edition (O'Reilly)
http://www.osbbs.com/dl/Programming Python, 2nd Edition (O'Reilly).chm
ºÜÈ«ºÜ¾µäÁËpythonѧϰÈëÃÅ×ÊÁÏ
OReilly - Learning Python:
http://www.osbbs.com/dl/OReilly - Learning Python.chm
......
python stringºÍPyQtµÄQStringµÄÇø±ð ÒÔÏÂÔÚPython2.6ºÍPyQt4.4.4 for
Python2,6»·¾³ÏÂÌÖÂÛ£º PythonÖÐÓÐÁ½ÖÖÓйØ×Ö·ûµÄÀàÐÍ£ºPython string objectºÍPython Unicode
object¡£Ö÷ҪʹÓÃPython string object½øÐÐÊý¾ÝÊäÈëÊä³ö¡£ PyQtÖÐÓëÖ®Ïà¶ÔÓ¦µÄ×Ö·ûÓйØÀà
python stringºÍPyQtµÄQStringµÄÇø±ð
ÒÔÏÂÔÚPython2.6ºÍPyQt4 ......
PythonµÄÄÚ´æÐ¹Â©¼°gcÄ£¿éµÄʹÓÃ
-- 6.11ÈÕ´íÎóÐÞÕý°æ
Horin|ºØÇÚ
Email: horin153@msn.com
......
Öð²½Ñݽø
f=open('/etc/motd','r')
longest=0
while True:
lineLen=len(f.readline().strip())
if not lineLen: break
if lineLen > longest:
longest=lineLen
f.close()
return longest
ÎÊÌâ£ºÒ»Ö±Õ¼Ó ......