Answers for "check if number in array python"

5

python check string not exist in array

arr_test = ["thetung1","thetung2","thetung3"]
title = "thetung"
if title not in arr_test:
	arr_test.append(title)
Posted by: Guest on November-01-2020
15

python check if list contains

# To check if a certain element is contained in a list use 'in'
bikes = ['trek', 'redline', 'giant']
'trek' in bikes
# Output:
# True
Posted by: Guest on February-19-2020
0

python check string or number array

numbers = []
animals = []
with open('textfile.txt') as f:
    for x in f:
        try:
            numbers.append(int(x.replace("n", "")))
        except:
            animals.append(str(x.replace("n", "")))
print(numbers)
print(animals)

# Output
# [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
# ['dog', 'cat', 'fish', 'bird']
Posted by: Guest on May-22-2021

Code answers related to "check if number in array python"

Python Answers by Framework

Browse Popular Code Answers by Language