by CodeChum Admin
Let's now try finding a certain digit into an integer! Come and join in on the fun and code with me!
Instructions
wanted = int(input("Enter the first integer: "))
list_of_numbers =input().split(' ')
if wanted in list_of_numbers\\:
print("Yes")
print("No")
Comments
Leave a comment