I am learning basic Python. I want to make a program whose workflow is:
A= Users will input integer value
B= Users will input integer value
How many times do you want to do the task?/Task Count = Users will input integer value
And then it will do some task like this:
task1=A+B & print task1
task2=A*B & print task2
task3=A-B & print task3
When every task will complete it will repeat from task1 until the 'task count' is equal.[][1]
. . . .
Will continue to do so