Homecampusx CampusX SDE Sheet | Write a program to print the first 25 odd numbers byTechy Rushabh •September 19, 2024 0 Write a program to print the first 25 odd numbers ''' Write a program to print the first 25 odd numbers ''' counter = 0 num = 1 while counter < 25: print(num) num += 2 counter += 1 Tags: campusx coding solution python sde sheet Facebook Twitter