概述
我最初的代码是Python2.7.8中的一个基本计算器,但现在我决定加入一个用户可以输入多个值的函数。在
一旦输入了这些值,函数就可以运行,用户刚刚输入的值存储在一个变量中(函数参数),然后被告知他们是否输入了重复的值,这些值在逗号处被拆分,并被插入到一个列表中,然后函数运行。在
我已经创建了一个函数,它已经接受了与用户输入的AlgorithmListEntry相等的变量,当用户键入算法时会发生这种情况。在def findDuplicates(AlgorithmListEntry):
for i in len(range(AlgorithmListEntry)):
for j in len(1,range(AlgorithmListEntry)):
if AlgorithmListEntry[i]==AlgorithmListEntry[j]:
return True
return False
其中,函数也会查找参数的范围,但由于另一个错误,此操作不起作用
^{pr2}$
我现在收到一个错误for i in len(AlgorithmListEntry):TypeError: 'int' object is not iterable
为了便于查看,我只插入了与我的问题相关的代码部分i = True #starts outer while loop
j = True #inner scientific calculations loop
def findDuplicates(AlgorithmListEntry):
for i in len(AlgorithmListEntry):
for j in len(
最后
以上就是安静含羞草为你收集整理的python用户重复输入_在Python中从用户输入中查找重复值的全部内容,希望文章能够帮你解决python用户重复输入_在Python中从用户输入中查找重复值所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复