python³ÌÐòÊÇÈçºÎÖ´ÐеÄ?
´øclassµÄpython³ÌÐòÊÇÔõÑùÖ´ÐеÄ?
Èç
#!/usr/bin/python
import sgmllib,urllib
class MyParser(sgmllib.SGMLParser):
"A simple parser class."
def parse(self, s):
"Parse the given string 's'."
self.feed(s)
self.close()
def __init__(self, verbose=0):
"Initialise"
sgmllib.SGMLParser.__init__(self, verbose)
self.hyperlinks = []
self.images = []
self.title=''
self.inside_title=False
self.contents=[]
def start_title(self, attrs):
self.inside_title = True
def end_title(self):
self.inside_title = False
def handle_data(self, data):
if self.inside_title and data:
self.title = self.title + data + ' '
def start_a(self, attributes):
for name, value in attributes:
if name ==
Ïà¹ØÎÊ´ð£º
×î½üÓÃpythonдһ¸ö³ÌÐò,×ÜÊÇÒì³£Í˳ö£¬µ«ÊÇȴû·¨ÓÃtry..exceptÀ´²¶×½
ÓÉÓÚû·¨·¢Í¼Æ¬£¬ËùÒÔ°ÑÏà¹ØµÄÐÅÏ¢´òÓ¡³öÀ´
Òì³£µÄÐÅÏ¢´óÖÂÈçÏ£º
python.exeÓöµ½ÎÊÌâÐèÒª¹Ø±Õ¡£ÎÒÃǶԴËÒýÆðµÄ²»±ã±íʾ±§Ç¸ ......
ÒÑÖªPython ÖУº
s = unicode("²âÊÔ", "gb2312")
s = u'\u6d4b\u8bd5'
print s
²âÊÔ
ÔÚDelphiÀïÃæÈçºÎ½«\u6d4b\u8bd5ÕâÑùµÄ»¹Ô³ÉGb2312µÄºº×ÖÄØ£¿
ÕÒµ½¸ö·½·¨
......
>>> x=-1
>>> if x>0:
print ('11')
>>> else:
SyntaxError: invalid syntax (<pyshell#20>, line 1)
ÍøÉÏËѵÄÒ²ÊÇ£º
>>> x=int(input("Please ent ......
ÓÉÓÚÊǵÚÒ»´Î½Ó´¥python,Óï·¨Ò²²»¶®
µ«ÊÇÁÙʱҪÓõ½...
Çë°ïæעÊÍÒ»¶Î´úÂë...²»ÐèҪÿһ¾ä¶¼×¢ÊÍ,ÒòΪÊÇѧjavaµÄ,ËùÒÔ»ù±¾Ë¼Â·»¹ÊÇÓÐÒ»µã
#************************************************ ......
ÇëÎʸßÊÖ£¬pythonÀïµÄpopenÀàËÆjavaÀïµÄÄĸöÀà»òÕß·½·¨ÄØ£¿£¿ÁíÍâjython¿ª·¢java¸ÃÈçºÎʹÓÃjythonÄØ£¿£¿
1.¿ÉÄܺÍjavaÀïµÄRuntime.getRuntime().exec£¨"ϵͳÃüÁî"£©; Æô¶¯½ø³Ì
2.eclipseÏÂÔØjython ²å¼ ......