上一页 1 2 3 4 5 6 7 8 9 10 ··· 28 下一页
摘要: import MySQLdb import sys db = MySQLdb.connect(host="127.0.0.1", # your host, usually localhost user="root", # your username passwd="111111", # ... 阅读全文
posted @ 2018-09-27 10:35 友哥 阅读(153) 评论(0) 推荐(0) 编辑
摘要: https://stackoverflow.com/questions/9439480/from-import-vs-import 阅读全文
posted @ 2018-09-26 19:22 友哥 阅读(182) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python # Hello World def order(): print("haha") print('Hello World!') order() 阅读全文
posted @ 2018-09-26 19:17 友哥 阅读(714) 评论(0) 推荐(0) 编辑
摘要: def reverse(data): for index in range(len(data)-1, -1, -1): yield data[index] for char in reverse('golf'): print char 阅读全文
posted @ 2018-09-26 17:43 友哥 阅读(133) 评论(0) 推荐(0) 编辑
摘要: class Dog: def __init__(self, name): self.name = name self.tricks = [] # creates a new empty list for each dog def add_trick(self, trick): self.tricks.append(tric... 阅读全文
posted @ 2018-09-26 17:34 友哥 阅读(2648) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-09-25 17:27 友哥 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 无法确定其值是多少,很可能是野指针 阅读全文
posted @ 2018-09-24 22:57 友哥 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 慎用全局变量,即使使用,也要用函数管理起来 阅读全文
posted @ 2018-09-24 18:03 友哥 阅读(112) 评论(0) 推荐(0) 编辑
摘要: int (*pf)(void); int f(void) { pf = &f; // 没问题 pf = ***f; // 取址? pf(); // 函数指针可以调用? (****pf)(); // 这又是什么? (***************f)(); // 这个够变态了吧? } 阅读全文
posted @ 2018-09-23 20:40 友哥 阅读(134) 评论(0) 推荐(0) 编辑
摘要: https://coolshell.cn/articles/11466.html 阅读全文
posted @ 2018-09-23 11:55 友哥 阅读(166) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 28 下一页