上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
摘要: regular.py regular_test.py magnus.txt template.txt 阅读全文
posted @ 2016-06-26 15:01 *飞飞* 阅读(240) 评论(0) 推荐(0)
摘要: from distutils.core import setup setup(name='hello', version='1.0', description='test example', author='test', py_modules=['hello']) 阅读全文
posted @ 2016-06-26 14:56 *飞飞* 阅读(235) 评论(0) 推荐(0)
摘要: from tkinter import * def hello():print('hello world') win=Tk() win.title('hello tkinter') win.geometry('200x100') #x不是* btn=Button(win,text='hello',command=hello) btn.pack(expand=YES,fill=BOTH) main... 阅读全文
posted @ 2016-06-26 14:55 *飞飞* 阅读(217) 评论(0) 推荐(0)
摘要: import sqlite3,sys def convert(value): if value.startswith('~'): return value.strip('~') if not value: value='0' return float(value) conn=sqlite3.connect('food.db') curs=c... 阅读全文
posted @ 2016-06-26 14:53 *飞飞* 阅读(354) 评论(0) 推荐(0)
摘要: #方法,属性,私有化加双下划线 ''' __a 从外部无法访问,但是类的内部可以访问。实际上还是能在类外访问这些私有方法,尽管不应该这么做:s._A__a 如果不需要使用这种方法但是又不行让其他对象不要访问内部数据,可以使用单下划线 前面有下划线的名字都不会被带星号的imports语句导入 ''' class Person: def setname(self,name): ... 阅读全文
posted @ 2016-06-26 14:51 *飞飞* 阅读(143) 评论(0) 推荐(0)
摘要: #__init__ 构造方法,双下划线 #__del__ 析构方法,在对象就要被垃圾回收前调用。但发生调用 #的具体时间是不可知的。所以建议尽量避免使用__del__ print('-------example1') class A: def __init__(self): self.a='a' def printA(self): print(se... 阅读全文
posted @ 2016-06-26 14:49 *飞飞* 阅读(144) 评论(0) 推荐(0)
摘要: #导入模块 import sys sys.path sys.path.append('D:\program files\Python34\PyWorks') #hello.py文件路径 #不用append PyWorks路径也可以,因为D:\program files\Python34在sys.path中 import hello #第一次导入会执行,路径增加... 阅读全文
posted @ 2016-06-26 14:48 *飞飞* 阅读(279) 评论(0) 推荐(0)
摘要: #文档字符串 def square(x): 'calculates the square of the number x' return x*x square.__doc__ help(square) #列表做实参 #当2个变量同时引用一个列表时,他们的确是同时引一个列表用 #当在序列中做切片时,返回的切片总是一个副本 def change(x): x[0]='**... 阅读全文
posted @ 2016-06-26 14:47 *飞飞* 阅读(282) 评论(0) 推荐(0)
摘要: try: raise Exception except Exception as e: print(e) try: raise Exception('comment') except Exception as e: print(e) class SomeException(Exception): print('aa') pass try: ... 阅读全文
posted @ 2016-06-26 14:46 *飞飞* 阅读(199) 评论(0) 推荐(0)
摘要: #链式赋值 m=n=[1,2,3] m[0]=2 print(m,n) #m,n都改变了 x=y='xxx' y='yyy' print(x,y) #只有y 改变 #序列解包 x,y,z=1,2,3 print(x,y,z) try: x,y,z=1,2 #error x,y,z=1,2,3,4 #error except Exception as e: ... 阅读全文
posted @ 2016-06-26 14:44 *飞飞* 阅读(119) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页