2016年3月17日

mysql 调整字段顺序

摘要: 用法:alter table 表名 modify 字段名 字段类型 after 字段 调整score和course的顺序:alter table students modify score int after course; 阅读全文

posted @ 2016-03-17 20:48 wonderful_journey 阅读(537) 评论(0) 推荐(0)

2015年12月5日

Tinter pack,分左右布局后,组件不随着窗口的拉伸而拉伸

摘要: 1 import Tkinter 2 3 top = Tkinter.Tk() 4 5 listbox = Tkinter.Listbox(top) 6 listbox.pack(fill = Tkinter.BOTH, side = Tkinter.LEFT) 7 8 listbox.in... 阅读全文

posted @ 2015-12-05 17:37 wonderful_journey 阅读(880) 评论(0) 推荐(0)

2015年10月30日

python文件名与module名冲突,出错'module' object has no attribute 'strftime'

摘要: import timeprint time.strftime('%Y%m%d%H%M%S')以上小程序命名为time.py运行时出现错误提示:print time.strftime('%Y%m%d%H%M%S')AttributeError: 'module' object has no attri... 阅读全文

posted @ 2015-10-30 23:05 wonderful_journey 阅读(5739) 评论(0) 推荐(0)

导航