Answer:
It checks if "?" exists in the string s. print Найдено if found, otherwise prints Готово
Explanation:
s = ‘Hi! Mister Robert'
i = 0
while (i < (len(s))) and (count==0):
if s[i] == ‘?':
count+=1
i+=1
if count > 0:
print("Найдено")
else:
print ("Готово")