Question: Define a method called cnu_captains that takes no arguments. Create a string that has one line per integer from 1 to 100 inclusive (Remember, range

Define a method called cnu_captains that takes no arguments. Create a string that has one line per integer from 1 to 100 inclusive (Remember, range starts at o, be careful) if the number is divisible by 2 the line should be "CNU" i the number is divisible by 5 the line should be "CAPTAINS" if the number is divisible by 2 and 5 the line should be "CNUCAPTAINS" Otherwise, you should should have the integer on the line. Use an os.linesep character to separate each line. NOTES: 1) You can add print statements to help you debug, but you must return a single string! 2) For this project, each line should be separated by an os.linesep character, and not just a 'In'. First few lines should look like this: 1 CNU 3 CNU CAPTAINS CNU 7 CNU o
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
