Determine the area of the shape by the sides and other indicators
- [Index of num in list](index_of_num_in_list.py)
Write a program that reads the list of numbers from the first line and the number x from the second line, which outputs all the positions where the number x occurs in the transmitted list of lst.
If the number x does not occur in the list, print the string "Отсутствует".
Write a program that takes an integer as input and prints True if the passed value falls within the interval (−15,12]∪(14,17)∪[19,+∞) and False otherwise (case matters)
- [Percentage of letters](percentage_of_letters.py)
-#1 Write a program that calculates the percentage of characters G (guanine) and C (cytosine) in an input string (the program should not be case sensitive)
-#2 Write a program that reads a string, encodes it using the proposed algorithm, and prints the encoded sequence to standard output. Encoding must be case sensitive
- [Pie](pie.py)
Determine the area of the figure using the following input data:
1) **triangle**, a, b, c - lengths of the sides of the figure
2) **rectangle**, a, b - lengths of the sides of the figure
3) **circle**, r - radius of the circle
- [Programmer's names](programmer_names.py)
> Peculiarities of word endings in Russian, therefore the task is duplicated in Russian
| English ver | Russian ver |
|:-------------|:---------------|
|Write a program that reads an integer from user inputn (non-negative), outputting this number to the console along with the word "programmer" correctly modified so that the robot can communicate normally with people, for example: 1 programmer, 2 programmers, 5 programmers| Напишите программу, считывающую с пользовательского ввода целое число n (неотрицательное), выводящее это число в консоль вместе с правильным образом изменённым словом "программист", для того, чтобы робот мог нормально общаться с людьми, например: 1 программист, 2 программиста, 5 программистов|
A program that takes the left and right character from each character and combines them into one number. For the first and last numbers, the left and right numbers are the last and first numbers respectively
- [Sum_num_nearby](sum_num_nearby.py)
A program that displays the sum of the right and left numbers from the main one. For the first and last numbers, the left and right numbers are the last and first numbers respectively