0
How do I loop the next task? (python)
How many questions do you want to ask? #ex: 2 ---------------------------------- First topic name: How many questions do you want in the first topic ?: ----------------------------------- Second topic name: How many questions do you want in the second?
3 Answers
+ 3
Something like this?
https://code.sololearn.com/cn7fsc9A2pe7/?ref=app
+ 5
you can use a do while loop for this
do{
your code
}while(input)
0
thank you!