python学习记录(三)
2021-07-13 10:06
标签:分享图片 raw_input alt 计数 最小值 info std none 最小 0827--https://www.cnblogs.com/fnng/archive/2013/02/24/2924283.html 通用序列操作 索引 序列中的所有元素都是有编号的--从0开始递增。这些元素可以通过编号分别访问。 使用负数索引时,Python会从最后一个元素开始计数,注意:最后一个元素的位置编号是-1 或者直接在字符串后使用索引 如果一个函数调用返回一个序列,那么可以直接对返回结果进行索引操作。 分片 与使用索引来访问单个元素类似,可以使用分片操作来访问一琮范围内的元素。分片通过冒号相隔的两个索引来实现 如果求10个数最后三个数: 对URL进行分割 -------------------------------------------------------------------- 输入 步长 序列相加 通过使用加号可以进行序列的连接操作 如果想创建一个占用十个元素空间,却不包括任何有用的内容的列表,可以用Nome 序列(字符串)乘法示例: ------------------------------------------------------------------------------------------------------------------- 结果 长度、最小值和最大值 内建函数len、min 和max 非常有用。Len函数返回序列中所包含元素的数量。Min函数和max函数则分别返回序列中最大和最小的元素。 python学习记录(三) 标签:分享图片 raw_input alt 计数 最小值 info std none 最小 原文地址:https://www.cnblogs.com/lu-test/p/9541263.html>>> test = ‘testdemo‘
>>> test[0]
‘t‘
>>> test[4]
‘d‘
>>> test = ‘testdemo‘
>>> test[-1]
‘o‘
>>> test[-2]
‘m‘
>>>‘testdemo‘[0]
‘t‘
>>>‘testdemo‘[-1]
‘o‘>>> fourth = input(‘year:‘)[3]
year:2013
>>> fourth
‘3‘
>>> tag = ‘Python web site‘
>>> tag[9:30] # 取第9个到第30个之间的字符
‘http://www.python.org‘
>>> tag[32:-4] #取第32到第-4(倒着数第4个字符)
‘Python web site‘
>>> numbers = [0,1,2,3,4,5,6,7,8,9]
>>> numbers[7:-1] # 从第7个数到 倒数第一个数
[7, 8] #显然这样不可行
>>> numbers[7:10] #从第7个数到第10个数
[7, 8, 9] #这样可行,索引10指向的是第11个元素。
>>> numbers[7:] # 可以置空最后一个索引解决
[7, 8, 9]
>>> numbers[:3]
[0, 1, 2]
>>> numbers[:]
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
# 对http://www.baidu.com形式的URL进行分割
url = raw_input(‘Please enter the URL:‘)
domain = url[10:-4]
print "Domain name:" + domain
>>>
Please enter the URL:http://www.baidu.com
输出:
Domain name:baidu
>>> numbers = [0,1,2,3,4,5,6,7,8,9]
>>> numbers[0:10:1] #求0到10之间的数,步长为1
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> numbers[0:10:2] #步长为2
[0, 2, 4, 6, 8]
>>> numbers[0:10:3] #步长为3
[0, 3, 6, 9]
>>> ‘python ‘ * 5
‘python python python python python ‘
>>> [25] * 10
[25, 25, 25, 25, 25, 25, 25, 25, 25, 25]
>>> sequence = [None] * 10
>>> sequence
[None, None, None, None, None, None, None, None, None, None]
# 以正确的宽度在居中的“盒子”内打印一个句子
# 注意,整数除法运算符(//)只能用在python 2.2 以及后续版本,在之前的版本中,只能用普通除法(/)
sentence = raw_input("Sentence : ")
screen_width = 80
text_width = len(sentence)
box_width = text_width + 6
left_margin = (screen_width - box_width) //2
print
print ‘ ‘ * left_margin + ‘+‘ + ‘-‘ * (box_width - 2)+ ‘+‘
print ‘ ‘ * left_margin + ‘| ‘ + ‘ ‘ * text_width + ‘ |‘
print ‘ ‘ * left_margin + ‘| ‘ + sentence + ‘ |‘
print ‘ ‘ * left_margin + ‘| ‘ + ‘ ‘ * text_width + ‘ |‘
print ‘ ‘ * left_margin + ‘+‘ + ‘-‘ * (box_width - 2)+ ‘+‘
>>> numbers = [100,34,678]
>>> len (numbers)
3
>>> max(numbers)
678
>>> min(numbers)
34
>>> max(2,3)
3
>>> min(9,3,2,5)
2
下一篇:javascript 兼容总结