Python 练习实例68
题目:有 n 个整数,使其前面各数顺序向后移 m 个位置,最后 m 个数变成最前面的 m 个数
程序分析:无。
程序源代码:
实例
#!/usr/bin/python
# -*- coding: UTF-8 -*-
if __name__ == '__main__':
n = int(raw_input('整数 n 为:\n'))
m = int(raw_input('向后移 m 个位置为:\n'))
def move(array,n,m):
array_end = array[n - 1]
for i in range(n - 1,-1,- 1):
array[i] = array[i - 1]
array[0] = array_end
m -= 1
if m > 0:move(array,n,m)
number = []
for i in range(n):
number.append(int(raw_input('输入一个数字:\n')))
print '原始列表:',number
move(number,n,m)
print '移动之后:',number
以上实例输出结果为:
整数 n 为: 8 向后移 m 个位置为: 5 输入一个数字: 2 输入一个数字: 8 输入一个数字: 6 输入一个数字: 1 输入一个数字: 78 输入一个数字: 45 输入一个数字: 34 输入一个数字: 2 原始列表: [2, 8, 6, 1, 78, 45, 34, 2] 移动之后: [1, 78, 45, 34, 2, 2, 8, 6]
kui
che***ui_1982@hotmail.com
以下实例提供 7 个数,每个数向后移动3位,最后 3 位数变为最前面的 3 位。
实例解法一:
实例解法二:
kui
che***ui_1982@hotmail.com
等一个人
252***465@qq.com
参考方案:
等一个人
252***465@qq.com
朦胧
253***5732@qq.com
参考方法:
朦胧
253***5732@qq.com
helloworld
hol***ord@qq.com
参考方法:
helloworld
hol***ord@qq.com
CosmosHua
cos***cosmos@163.com
Python3 测试:
CosmosHua
cos***cosmos@163.com
sssss
lij***2033@qq.com
参考方法:
sssss
lij***2033@qq.com
薄荷可乐
r49***7365@163.com
参考方法:
薄荷可乐
r49***7365@163.com
大大大大大大大熊
382***076@qq.com
参考方法:
大大大大大大大熊
382***076@qq.com
iMax4ever
jia***@foxmail.com
Python3:切片
iMax4ever
jia***@foxmail.com
郭扬乔
944***785@qq.com
参考:
郭扬乔
944***785@qq.com
ng
409***567@qq.com
python3 实测通过
ng
409***567@qq.com