当我尝试输入试图找到的程序时,我收到错误 数组中数字的位置,我想给出整个输入 一个人怎么办呢,有更简单的方法吗?谢谢。我明白了 尝试在pycharm中的控制台中执行时出现以下错误
实施例
输入
2
4
1 2 3 4
3
5
10 90 20 30 40
40
# Returns index of x in arr if it is present,
# else returns -1
def search(arr, x):
n = len(arr)
for j in range(0,n):
if (x == arr[j]):
return j
return -1
# Input number of test cases
t = int(raw_input())
# One by one run for all input test cases
for i in range(0,t):
# Input the size of the array
n = int(raw_input())
# Input the array
arr = map(int, raw_input().split())
# Input the element to be searched
x = int(raw_input())
print(search(arr, x))
在pycharm控制台上我的输入:
2
4
1 2 3 4
3
5
10 90 20 30 40
40
输出
Traceback (most recent call last):
File "<input>", line 8, in <module>
ValueError: invalid literal for int() with base 10: '2\n 41 2 3 4\n 3\n 5\n 10 90 >20 30 40\n 40'
答案 0 :(得分:0)
Bcoz输入字符串无法转换为int('2 \ n 41 2 3 4 \ n 3 \ n 5 \ n 10 90> 20 30 40 \ n 40') 您应该使用'\ n'和''解析输入值,然后转换为int数字