06 2017 档案

该文被密码保护。
posted @ 2017-06-26 22:03 IT由零开始 阅读(4) 评论(0) 推荐(0)
摘要:摘自网络 python本身没有switch语句,解决方法有以下3种: A.使用dictionaryvalues = { value1: do_some_stuff1, value2: do_some_stuff2, ... valueN: do_some_stuffN, }values.get(va 阅读全文
posted @ 2017-06-17 15:36 IT由零开始 阅读(549) 评论(0) 推荐(0)
摘要:注释: 先CTRL+K,然后CTRL+C 取消注释: 先CTRL+K,然后CTRL+U 阅读全文
posted @ 2017-06-15 17:41 IT由零开始 阅读(375) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2017-06-14 18:19 IT由零开始 阅读(4) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2017-06-09 18:08 IT由零开始 阅读(6) 评论(0) 推荐(0)
摘要:下面面四个表达式中前两个实际上是声明一个值为27int类型的变量。而后两个,是声明一个类型为std::initializer_list<int>,并且具有一个值为27的元素! 这是因为auto类型推导有特俗的规则。当为auto声明的类型进行初始化使用封闭的大括号时,则推导的类型为std::initi 阅读全文
posted @ 2017-06-07 19:55 IT由零开始 阅读(1312) 评论(0) 推荐(0)
摘要:TODO: 阅读全文
posted @ 2017-06-05 11:36 IT由零开始 阅读(181) 评论(0) 推荐(0)
摘要:直接在github上找 https://github.com/pycurl/pycurl/tree/master/examples basicfirst.py: xmlrpc_curl.py: D:\python\pycurl-master\tests里的post_test.py有一段可以参考: 网 阅读全文
posted @ 2017-06-02 18:13 IT由零开始 阅读(2286) 评论(0) 推荐(0)