加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
linear_search.py 398 Bytes
一键复制 编辑 原始数据 按行查看 历史
ruchi52 提交于 2019-10-01 19:47 . Create linear_search.py
list = []
num = int(input("Enter size of list: \t"))
for n in range(num):
numbers = int(input("Enter any number: \t"))
list.append(numbers)
x = int(input("\nEnter number to search: \t"))
found = False
for i in range(len(list)):
if list[i] == x:
found = True
print("\n%d found at position %d" % (x, i))
break
if not found:
print("\n%d is not in list" % x)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化