STRING
PROBLEM- Write a program which takes a student's ID as input and check if the student is in CSE AI with Robotics branch or not. The student's year of admission can range from 2018 to 2021. . Matching must be case insensitive. CODE- a=input() b=int(a[0:2]) if b in range(18,22): c=a[2:5] if c=='BRS' or c=='brs': print('Yes') else: print('No') else: print('No') OUTPUT- -------------------------------------------------------------------------------------------------------------------------------- PROBLEMS- Sruthi has got the task to slicing the string S with N charecters and she has to find no of VOWELs in each slice. Your task is to help Sruthi to slice the given string S with N charecters and Display no of VOWELs each slice. Input Format First line contains a string s with out any spaces Second line contains integer N Constraints: string length <100 N<=10 Output For...