I am attempting to get a correct input but whilst the input is false I want it to continually ask again until the output is correct, how do I correctly do this?
x = input("Enter your string")
if set(x).issubset({'m', 'u', 'i'}):
print("true")
else:
print("false")
x = input("Enter your string")