Question: Define a function called cnu _ captains that takes no arguments. Create a string that has one line per integer from 1 to 1 0

Define a function 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 0, so be careful)
if the number is divisible by 2 the line should be "CNU"
if 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 have the integer on the line.
Use a newline character "
" to separate each line in the string that you return.
NOTES: 1) You can add print statements to help you debug,
but you must return a single string!
2) Make sure that you have a newline character at the end of each line!
First few lines should look like this:
1
CNU
3
CNU
CAPTAINS
CNU
7
CNU
9
CNUCAPTAINS
11
:return: String that is described above
"""
# Fix this by defining function called cnu_captains
# Ideally, your function definition will be above the
# triple quoted lines above, which will then be indented to
# make them a `doc-string`. You'll learn more about doc-strings later.
# Write the body of your code below the doc-string.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!