我需要创建一个算法来读取用户输入的列表A
,B
并确定列表中的元素是否B
出现在列表中A
(如果出现,程序需要打印“是”,否则打印“否”)。
我想出了以下代码,这应该是一个起点:
n=int(input('Enter the length of list A '))
A=[]
for i in range (0,n):
InpEl=int(input('Enter the elements '))
A.append(InpEl)
print(A)
n=int(input('Enter the length of list B '))
B=[]
for i in range (0,n):
InpEl2=int(input('Enter the elements '))
B.append(InpEl2)
print(B)
checklist=B
for each in A:
if each in checklist:
print('YES')
else:
print('NO')
尽管无论如何,我都得到“不”。这里有什么错误?
此外,稍后我可能需要修改列表,以便程序可以确定 的元素是否按照它们B
出现A
的顺序出现B
,但不一定是连续的。
For example, let M be the length of B and N be the length of A.
Then the program should return yes if there are indices i0, i1...im+1 such that 0<= i0 < i1...< im-1 < N such that A[i0] = B[0];A[i1] = B[1]...A[im-1] =
B[m-1].
有没有更简单的方法来构建满足这种请求的循环?
PS:是否可以让用户输入不仅读取整数,还读取字符串?我不确定raw_input
在 Python 3.5 中是否有用。
PSS:对不起,我在这里输入代码时犯了一个小错误,我现在修复它。另一个问题:我得到了每个元素的多个 yes 和 no 的输出:
Enter the length of list A 3
Enter the elements 1
Enter the elements 2
Enter the elements 3
[1, 2, 3]
Enter the length of list B 3
Enter the elements 5
Enter the elements 4
Enter the elements 3
[5, 4, 3]
NO
NO
YES
如何修改代码,以便在发生任何情况时只打印一次是和否?