Python
乌羽凤
学习物联网专业
展开
-
Learning Python-the third chapter
How You Run Programs OK, it’s time to start running some code. Now that you have a handle on the program execution(执行) model, you’re finally ready to start some real Python programming. At this point(翻译 2016-03-24 21:57:25 · 551 阅读 · 0 评论 -
啥叫"短路逻辑"
从Python中的理解:if a and b:#如果a是false,那么跳过b的判断,结果直接false if a or b:#如果a为true,那么跳过b的判断,直接true从Jave中认清逻辑操作符和短路逻辑操作符一休:愚公,我又碰到问题了,请看下面一段代码:… double value=0; if(value!=0 && 1/value<1000) { System.out.p转载 2016-03-28 19:46:05 · 6010 阅读 · 0 评论 -
【华为公司Python面试题】,要求10分钟写出代码,
Question:有两个序列a,b,大小都为n,序列元素的值任意整形数,无序; 要求:通过交换a,b中的元素,使[序列a元素的和]与[序列b元素的和]之间的差最小。(注:整形数 是指 整数)Answer:def look(a, max = 0): a.sort() while 1: &nbs转载 2016-04-27 21:26:08 · 872 阅读 · 0 评论 -
Python网络编程_str<-->bytes转换
在Python网络编程中,会需要用到str与bytes的转化。这里简单介绍一下:1 bytes object : b = b"example" 2 str object : s = "example" 3 #str to bytes 4 bytes(s, encoding = "utf8") 5 #bytes to str 6原创 2016-08-07 12:04:50 · 454 阅读 · 0 评论