/*I want conver this code to python Write a program in C-C that walks through an array and generates a histogram based on the numbers in the array. The array is named myArray and contains 10 elements that correspond to integers from 1 to 5. A histogram represents that both an element appears in a dataset. For example, for the array: myArray:-(1,2,1,3,3,1,2,1,5,1) the histogram would look like this: 1: ***** 2: ** 3: ** 4: 5: * */ Dim mayorSec As Integer = 1 Dim mayorSecAux As Integer = 1 Dim numeroMayorSec As Integer = 0 Dim numeroAux As Integer = 0 Dim i As Integer = 0 Do While (i < myArray.Length) If (myArray(i) = numeroAux) Then mayorSecAux = (mayorSecAux + 1) Else mayorSecAux = 0 End If If (mayorSecAux > mayorSec) Then mayorSec = mayorSecAux numeroMayorSec = myArray(i) End If numeroAux = myArray(i) i = (i + 1) Loop Console.WriteLine(("Longest: " _ + (mayorSec + 1))) Console.WriteLine(("Number: " + numeroMayorSec))