MIT 6.00.1X problem set
problem set 1 (1)count = 0num = 0while count < len(s): if s[count] in 'aeiou': num += 1 count += 1print('Number of vowels: '+str(num))problem set 1 (2) find bob (can overlapping...