With your team, enter the the following Python program in your favorite editor on our Blue Unix server (blue.cs.sonoma.edu).
#!/usr/bin/python3 def positive_input(): x = int(input("Enter a positive integer: ")) while x <= 0: print("Invalid input!") x = int(input("Enter a positive integer: ")) return x def main(): n = positive_input() numbers = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0] while n > 0: numbers[n % 10] = numbers[n % 10] + 1 n = n // 10 print(numbers) main()
What does this Python program do? Specifically, what does the output represent? Do you see a pattern?
Examine the output by entering the following numbers:
Since this is a group assignment, please write the names of each member of the team student on your assignment submission along with "Exercise 12a".