最新回答 / Unequaled
Python3.X 源码文件默认使用utf-8编码,所以可以正常解析中文,无需指定 UTF-8 编码。http://www.runoob.com/python/python-chinese-encoding.html
2018-05-19
最新回答 / Emiya_Archer
def square_of_sum(L): b = [] for a in L: b.append(a * a) return sum(b) print(square_of_sum([1, 2, 3, 4, 5])) print(square_of_sum([-5, 0, 5, 15, 25]))为何你要那么麻烦?
2018-05-18
最赞回答 / 慕粉13325360130
第一行加:# -*- coding: utf-8 -*-print('''静夜思窗前明月光,疑是地上霜。举头望明月,低头思故乡。''')
2018-05-17
最赞回答 / zls9
def toUppers(L): L1 = [] for x in L: if isinstance(x, str): L1.append(x.upper()) else: L1.append(x) return L1print toUppers(['Hello', 'world', 101])
2018-05-16
最新回答 / 大蜗牛0
<table></table>是一对html标签,关键看你声明的DOC TYPE。例如html5,浏览器自动闭合。xhtml,则严格要求有闭合标签。另外如果不闭合标签,浏览器将自己判断在何处闭合,增加运行成本。
2018-05-16
最赞回答 / Carter_lin3570426
Python的整数运算结果仍然是整数,浮点数运算结果仍然是浮点数:
1 + 2 # ==> 整数 3 3 / 2 # ==> 整数 1但是整数和浮点数混合运算的结果就变成浮点数了:
3.0 / 2 # ==> 浮点数 1.5
2018-05-13