码迷,mamicode.com
首页 > 编程语言 > 详细

python之简单排序和随机整数

时间:2016-07-01 21:19:27      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

#coding:utf-8
import random

i = 0
list1 = []
while i <= 10:
    list1.append(random.randint(10, 100))
    i += 1
print(list1)

list1.sort()
print(list1)

list2 = range(0, 199, 2)

searchkey = int(input(Enter integer search key:))

if searchkey in list2:
    print(found at index:, list2.index(searchkey))
else:
    print(value not found!)

 

end!

python之简单排序和随机整数

标签:

原文地址:http://www.cnblogs.com/changbo/p/5634153.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!