I have a function that evaluates input, and I need to continue to request their input and evaluate it until they enter an empty string. How can I customize this?
while input != '': evaluate input
I was thinking about using something like this, but it didnβt quite work. Any help?
python loops for-loop while-loop
user3033494
source share