4 of 100 menu

Python Taskbook Level 1.4

Print to the console all integers from 1 to 100.

Print to the console all integers from -100 to 0.

Print to the console all integers from 100 to 1.

Print to the console all even numbers from 1 to 100.

Print to the console all numbers multiples of three in the range from 1 to 100.

Given a list:

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

Get the last two elements from it:

[5, 6]

Given a string:

'abcdeabc'

Get her set of symbols:

{'a', 'b', 'c', 'd', 'e'}
enru