摘要: 第一个技巧: 增加"最近使用文档"的显示数量 第二个技巧: 在最近使用的文档中保留最常用的文档 阅读全文
posted @ 2015-05-23 23:35 司徒无名 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 《》 Excel 2007 开始就使用叫做Ribbon的菜单一样的东西,也叫做功能区。 最小化功能区的三个方法: 第一:双击Tab 第二:右键 第三:快捷键Ctrl+F1 调节大小: 最快的办法是Ctrl+鼠标滚动键 Excel的26进制以及XFD 对,你没有听错,Excel居然有26进制?当你打开一张Excel时候,列的排序就是26进制 当ABC列直到Z列的时候,... 阅读全文
posted @ 2015-05-20 19:14 司徒无名 阅读(182) 评论(0) 推荐(0) 编辑
摘要: from Tkinter import * root = Tk() mylabel = Label(root, text = "I am a label widget") mybutton = Button(root,text = "I am a button" ) mylabel.pack() mybutton.pack() root.mainloop() ... 阅读全文
posted @ 2015-05-14 20:06 司徒无名 阅读(143) 评论(0) 推荐(0) 编辑
摘要: def isPhoneNumber(text): #固定电话 if len(text) != 13: return False # 位数不够 for i in range(0, 4): if not text[i].isdecimal(): return False # 区号不对 if text[4] != '-': ... 阅读全文
posted @ 2015-05-14 13:26 司徒无名 阅读(150) 评论(0) 推荐(0) 编辑
摘要: def isPhoneNumber(text): #固定电话 if len(text) != 13: return False # 位数不够 for i in range(0, 4): if not text[i].isdecimal(): ... 阅读全文
posted @ 2015-05-14 12:55 司徒无名 阅读(555) 评论(0) 推荐(0) 编辑