PythonÕýÔò±í´ïʽµÄ³£ÓÃÆ¥ÅäÓ÷¨
ÏÂÃæÁгöPythonÕýÔò±í´ïʽµÄ¼¸ÖÖÆ¥ÅäÓ÷¨£º
1.²âÊÔÕýÔò±í´ïʽÊÇ·ñÆ¥Åä×Ö·û´®µÄÈ«²¿»ò²¿·Ö
regex=ur"" #ÕýÔò±í´ïʽ
if re.search(regex, subject):
do_something()
else:
do_anotherthing()
2.²âÊÔÕýÔò±í´ïʽÊÇ·ñÆ¥ÅäÕû¸ö×Ö·û´®
regex=ur"\Z" #ÕýÔò±í´ïʽĩβÒÔ\Z½áÊø
if re.match(regex, subject):
do_something()
else:
do_anotherthing()
3.´´½¨Ò»¸öÆ¥Åä¶ÔÏó£¬È»ºóͨ¹ý¸Ã¶ÔÏó»ñµÃÆ¥Åäϸ½Ú(Create an object with details about how the regex matches (part of) a string)
regex=ur"" #ÕýÔò±í´ïʽ
match = re.search(regex, subject)
if match:
# match start: match.start()
# match end (exclusive): atch.end()
# matched text: match.group()
do_something()
else:
do_anotherthing()
4.»ñÈ¡ÕýÔò±í´ïʽËùÆ¥ÅäµÄ×Ó´®(Get the part of a string matched by the regex)
regex=ur"" #ÕýÔò±í´ïʽ
match = re.search(regex, subject)
if match:
result = match.group()
else:
result = ""
5. »ñÈ¡²¶»ñ×éËùÆ¥ÅäµÄ×Ó´®(Get the part of a string matched by a capturing group)
regex=ur"" #ÕýÔò±í´ïʽ
match = re.search(regex, subject)
if match:
result = match.group(1)
else:
result = ""
6. »ñÈ¡ÓÐÃû×éËùÆ¥ÅäµÄ×Ó´®(Get the part of a string matched by a named group)
regex=ur"" #ÕýÔò±í´ïʽ
match = re.search(regex, subject)
if match:
result = match.group"groupname")
else:
result = ""
7. ½«×Ö·û´®ÖÐËùÓÐÆ¥ÅäµÄ×Ó´®·ÅÈëÊý×éÖÐ(Get an array of all regex matches in a string)
result = re.findall(regex, subject)
8.±éÀúËùÓÐÆ¥ÅäµÄ×Ó´®(Iterate over all matches in a string)
for match in re.finditer(r"<(.*?)\s*.*?/\1
Ïà¹ØÎĵµ£º
python ûÓÐÊý×éµÄÊý¾Ý½á¹¹
#list ÐòÁÐ
sample_list = [1,2,3,'abc']
#dictionary ×Öµä
sample_dic = {"key":value, 2:3}
#tuple Ö»¶ÁµÄÐòÁÐ
sample_tuple = (1,3,"ab")
Ðò±í
Ðò±íÓÉһϵÁÐÖµÓöººÅ·Ö¸ô¶ø³É
Ðò±íÓë×Ö·û´®Ò»ÑùÊDz»¿É±äµÄ£º²»ÔÊÐí¶ÔÐ ......
ÎÒÖªµÀµÄÒ»ÖÖÔÚ
python
ÖÐ
Singleton mode
µÄʵÏÖÈçÏ£º
class Foo: pass
def
instance():
global inst
try:
inst
except:
inst =
Foo
()
&n ......
windowsÏÂ
1 ÏÂÔØpython°²×°°ü£¬ һ·ÏÂÈ¥°²×°
2 ÏÂÔØmysqldb°²×°
3 ÏÂÔØdjangoÎļþ£¬ dyango-admin.py install Íê³É
£££££Èç¹ûÆô¶¯ºó±¨´íimport error: dll load failed. ÐèÒªÔÚsite-packageÏÂÔö¼Ódll: libguide40.dll libmmd.dll libmySQL.dll
´´½¨Ó¦ÓÃºó£¬ manage.py µÄprogram argumentÖÐÓ¦ ......
PLYÄ£¿é ÊÇLex/YACCPython µÄʵÏÖ£¬¿ÉÒÔÓÃÀ´ÊµÏÖ´Ê·¨·ÖÎö/Óï·¨·ÖÎö£¬µ«ÈçºÎÓ㬻¹Ã»Ñо¿£¬ÒÔºóÓÐʱ¼äÔÙÑо¿°É£»
Ö÷Ò³: http://www.dabeaz.com/ply/
pycparserÄ£¿é ÊÇʹÓÃPLYÄ£¿é·ÖÎöcÓïÑÔÓï·¨µÄÄ£¿é£¬Ã»Ê²Ã´Îĵµ£¬µ«Ä£¿é×Ô´øÁËÀý×ӺͲâÊÔÓÃÀý¡£
Ö÷Ò³: http://code.google.com/p/pycpa ......
Èí¼þ×¼±¸£º
1.eclipse¿ª·¢°ü£¬ÏÂÔØµØÖ·£ºhttp://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/galileo/SR2/eclipse-java-galileo-SR2-win32.zip
2.pydev²å¼þ£¬ÏÂÔØµØÖ·£ºhttp://sourceforge.net/projects/pydev/files/pydev/Pydev%201.5.4/org.python.pydev.feature-1.5.4.2010011921 ......