Solution Exercise 17: number of occurrences of a character in a Python string
Exercise 17 Write a Python program to display for a given string of characters "s", the number of occurrences of each character in the string "s". Example for the string s = "Python.org" the program should display: The character: "P" appears once in the string s The character: "y" appears once in the string s…