I am just trying out some basic functionality in Python, and this is the entire script that I wrote:
a = [5, 3, 6, 9, 7, 8] x = input() print(x in a)
Cast the input to int. input() always returns a string
int
input()
string
x = int(input())