8 of 100 menu

Python Taskbook Level 1.8

Given a tuple with numbers:

(1, 2, 3, 4, 5)

Find the sum of the elements of this tuple.

Given a list of numbers:

[1, 2, 3, 4, 5, 6]

Increase each number in the list by 10 percent.

Given a line:

'abcdef'

Get the first three characters of this string:

'abc'
enru