Challenge: Snake and Sum
Oppgave
Swipe to start coding
Implement the function that can take optional arguments and keyword arguments. This function should return the snake string and summary of integer values.
- Define the
snake_and_sum()function that should take many arguments and keyword arguments. - Create a loop for iteration on optional arguments:
- if the argument is a string, append this value to the
snakelist. - if the argument is an integer, add this argument to the
summaryvariable.
- if the argument is a string, append this value to the
- Create a loop for iteration on keyword arguments:
- all keywords are string, append it to the
snakelist. - if the value is an integer, add this value to the
summaryvariable.
- all keywords are string, append it to the
- The
snake_and_sum()function returns a tuple with two values (string and integer). Unpack these values to the variablesstringandresult.
Løsning
Alt var klart?
Takk for tilbakemeldingene dine!
Seksjon 2. Kapittel 6
single
Spør AI
Spør AI
Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår
Suggested prompts:
Oppsummer dette kapittelet
Explain code
Explain why doesn't solve task
Awesome!
Completion rate improved to 4.35
Challenge: Snake and Sum
Sveip for å vise menyen
Oppgave
Swipe to start coding
Implement the function that can take optional arguments and keyword arguments. This function should return the snake string and summary of integer values.
- Define the
snake_and_sum()function that should take many arguments and keyword arguments. - Create a loop for iteration on optional arguments:
- if the argument is a string, append this value to the
snakelist. - if the argument is an integer, add this argument to the
summaryvariable.
- if the argument is a string, append this value to the
- Create a loop for iteration on keyword arguments:
- all keywords are string, append it to the
snakelist. - if the value is an integer, add this value to the
summaryvariable.
- all keywords are string, append it to the
- The
snake_and_sum()function returns a tuple with two values (string and integer). Unpack these values to the variablesstringandresult.
Løsning
Alt var klart?
Takk for tilbakemeldingene dine!
Seksjon 2. Kapittel 6
single