...

/

Puzzles 11 to 14

Puzzles 11 to 14

Understand the usage of sum, range, and append functions. Also, learn about the modulo operator and overshoot slicing in Python.

Puzzle 11

What is the output of the following code?

Note: Enter the output you guessed. Then, press the Run button, and your new Elo will be calculated. Don’t forget to save your Elo rating.

Press + to interact
Elo
1000
#############################
## id 93
## Puzzle Elo 815
## Correctly solved 76 %
#############################
print(sum(range(0, 7)))

Enter the input below

Range function

The range function returns a sequence starting from the first value (inclusive) and ending at the second value (exclusive).

range(1,101)

Sum function

The sum function sums up the values in the iterable.

Press + to interact
arr = {1,2,3,4,5}
a = sum(arr)
print(a)

Solution

The correct solution is 21.

Combining the sum and range functions sums up the sequence from 0 to 6.

Your Elo rating will be updated according to the following table.

Your Elo Correct Incorrect
0 - 500 46 -9
...