Total Count of odd between numbers
I code only print of odd nummbers in 1 to 10 numbers using for loop, i trying to find this between odd numbers total count example: This is my code for Number in range(1,11): if(Number%2==1): print(Number) I tyring different method of find the Number Variable in total count values, but not working count = 0 […]