What is the last output of this Python program when the user enters 10?
def doThis():
nums = [92, 10, 12, 52, 10, 57, 92]
target = input("Target number? ")
target = int(target).
count = 0
for item in nums:
if target = item:
count = count + 1
print("I found", count, "of your target")
doThis()
I found 2 of your target
OI found 3 of your target
OI for 1 of your target
OI found 0 of your target



Answer :

Other Questions