Python的元组与列表类似,不同之处在于元组的元素不能修改(只读列表,显示儿子级别的增删改)。 元组使用小括号,列表使用方括号。 元组创建很简单,只需要在括号中添加元素,并使用逗号隔开即可。 实例: tuple1 = ('physics', 'chemistry', 1997, 2000); tu ...
分类:
其他好文 时间:
2018-04-10 15:25:46
阅读次数:
192
任务一 1、ppsuc 2、 When I am down and, oh my soul, so weary; When troubles come and my heart burdened be; Then, I am still and wait here in the silence, U ...
分类:
其他好文 时间:
2018-04-07 12:54:20
阅读次数:
168
概述 大致相当于数组 格式 list1 = ['physics', 'chemistry', 1997, 2000] list2 = [1, 2, 3, 4, 5 ] list3 = ["a", "b", "c", "d"] 访问内容类型与其他类似 a[0] append()添加列表元素 list ...
分类:
编程语言 时间:
2018-03-19 20:57:20
阅读次数:
263
Python的元组与列表类似,不同之处在于元组的元素不能修改。 元组使用小括号,列表使用方括号。 元组创建很简单,只需要在括号中添加元素,并使用逗号隔开即可 例 tup1 = ('physics', 'chemistry', 1997, 2000); tup2 = (1, 2, 3, 4, 5 ); ...
分类:
编程语言 时间:
2018-03-19 20:56:55
阅读次数:
186
With the development of computer science technology, people are facing more and more information everyday. The traditional static way to display infor... ...
分类:
其他好文 时间:
2018-02-20 15:35:05
阅读次数:
179
Petya is the most responsible worker in the Research Institute. So he was asked to make a very important experiment: to melt the chocolate bar with a ...
分类:
其他好文 时间:
2018-02-09 23:53:07
阅读次数:
244
Little Chris is bored during his physics lessons (too easy), so he has built a toy box to keep himself occupied. The box is special, since it has the ...
分类:
其他好文 时间:
2018-02-04 12:45:49
阅读次数:
200
APS是American Physics Society的简称。旗下比较有影响力的期刊有: "pra, prb, prc, prd, pre, prl, prstab, prstper, or rmp". 在旗下期刊的投稿中需遵循一套APS自己的风格。具体的要求详见这个网站:https://jour ...
分类:
其他好文 时间:
2018-02-02 22:00:21
阅读次数:
2513
Python 元组 Python的元组与列表类似,不同之处在于元组的元素不能修改。 元组使用小括号,列表使用方括号。 元组创建很简单,只需要在括号中添加元素,并使用逗号隔开即可。 如下实例: tup1 = ('physics', 'chemistry', 1997, 2000);tup2 = (1,... ...
分类:
编程语言 时间:
2018-01-21 17:40:04
阅读次数:
217
I was trying loading file using hadoop API as an experiment. I want to set replication to minimum as this one is for experiment. I first tried this wi ...
分类:
其他好文 时间:
2018-01-09 18:45:29
阅读次数:
136