Private Python2VBText As New TextBox Private p2vbList as List(Of Object) ' Exercise to complete printLocations as described below. ' Create file locations.py. Public Sub printLocations(s As Object, target As Object) ' s is a string to search through, and target is the substring to look for. ' Print each index where the target starts. Dim repetitions As Object ' For example ' >>> printLocations('Here, there, everywhere!', 'ere') ' 1 ' 8 ' 20 ' repetitions = s.count(target) ' ... ?? for i = 0 To repetitions - 1 ' ... ??? Next End Sub Public Sub main() Dim phrase As String phrase = "Here, there, everywhere!" Python2VBText.Text = Python2VBText.Text + "Phrase:"+ phrase + vbNewLine Python2VBText.MultiLine = True Python2VBText.Width = 200 Python2VBText.Height = 100 Form1.Controls.Add(Python2VBText) p2vbList = New List(Of Object)({"ere", "er", "e", "zx"}) for target= 0 To p2vbList.Count - 1 Python2VBText.Text = Python2VBText.Text + "finding:"+ target.ToString + vbNewLine printLocations(phrase, target) Next Python2VBText.Text = Python2VBText.Text + "All done!" + vbNewLine End Sub 'main()