Python 🇺🇦
▪️Вивчаємо Python разом. ▪️Високооплачувана професія ▪️Допомагаємо з пошуком роботи Зв'язок: @Ekater1na_admin
Show more📈 Analytical overview of Telegram channel Python 🇺🇦
Channel Python 🇺🇦 in the Ukrainian language segment is an active participant. Currently, the community unites 20 268 subscribers, ranking 6 373 in the Technologies & Applications category and 3 016 in the Ukraine region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 20 268 subscribers.
According to the latest data from 06 September, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -187 over the last 30 days and by -6 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 9.90%. Within the first 24 hours after publication, content typically collects 5.40% reactions from the total number of subscribers.
- Post reach: On average, each post receives 2 006 views. Within the first day, a publication typically gains 1 094 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 11.
- Thematic interests: Content is focused on key topics such as шпаргалка, mcp, user1, python'er, бібліотека.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“▪️Вивчаємо Python разом.
▪️Високооплачувана професія
▪️Допомагаємо з пошуком роботи
Зв'язок: @Ekater1na_admin”
Thanks to the high frequency of updates (latest data received on 07 September, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
str.split(sep=None, maxsplit=-1) — повертає список підрядків, розбивши рядок на роздільник sep (за замовчуванням ' '), maxsplit кількість разів.
🔴sep.join(iterable) — повертає рядок, об'єднавши елементи iterable по роздільнику sep.
🔴str.replace(old, new[, count]) — поверне копію рядка, в якому всі входження підрядка old замінені на підрядок new, count разів.
#theory // Архів книг // Pythonnumbers = [2.5, 3, 4, -5]
numbers_ sum = sum (numbers)
print(numbers_sum) # 4.5
numbers_sum = sum(numbers, 10)
print(numbers_sum) # 14.5
sum() додає елементи об'єкта, що ітерується, і повертає суму. За потреби можна вказати параметр start. Це значення додається до суми елементів ітерації. Значення start за замовчуванням — 0 (якщо опущено).
#practice // Вакансії IT // Pythonalphabet = 'odd'
number1 = {1, 3}
number2 = {2, 4}
number1.update(alphabet)
print('Set and strings:', number1)
# Set and strings: {1, 3, 'o', 'd'}
key_value = {'key': 1, 'lock' : 2}
number2.update(key_value)
print('Set and dictionary keys:', number2)
# Set and dictionary keys: {'lock', 2, 4, 'key'}
update() застосовується для додавання до множини рядка та словника. Метод розбиває рядок на окремі символи і додає їх до множини number1. Аналогічно він додає ключі словника до множини number2.
#practice // Вакансії IT // Pythontest = 254
print(test, 'is', bool(test))
# 254 is True
test1 = 25.14
print(test1, 'is', bool(test1))
# 25.14 is True
test2 = 'Python is the best'
print(test2, 'is', bool(test2))
# Python is the best is True
test3 = True
print(test3, 'is', bool(test3))
# True is True
bool() приймає вказаний аргумент та повертає його логічне значення: False — якщо аргумент порожній, має значення False, 0 чи None; або True — якщо аргументом є будь-яке число (крім 0), True або рядок.
#practice // Архів книг // Pythonstr.upper() — переведення рядка до верхнього регістру.
🔴str.lower() — переведення рядка до нижнього регістру.
🔴str.title() — першу літеру кожного слова переводить у верхній регістр, а решта — у нижній.
🔴str.capitalize() — переводить перший символ рядка у верхній регістр, а решта — у нижній.
🔴str.swapcase() — переводить символи нижнього регістру до верхнього, а верхнього — до нижнього.
#theory // Вакансії IT // Pythonalphabet = 'odd'
number1 = {1, 3}
number2 = {2, 4}
number1.update(alphabet)
print('Set and strings:', number1)
# Set and strings: {1, 3, 'o', 'd'}
key_value = {'key': 1, 'lock' : 2}
number2.update(key_value)
print('Set and dictionary keys:', number2)
# Set and dictionary keys: {'lock', 2, 4, 'key'}
update() застосовується для додавання до множини рядка і словника. Метод розбиває рядок на окремі символи і додає їх до множини number1. Аналогічно він додає ключі словника до множини number2.
#practice // Архів книг // PythonFrozenset.
Мова: 🇺🇦
Автор: Python Українською
#lessons // Вакансії IT // Pythonprime_numbers = [11, 3, 7, 5, 2]
prime_numbers.sort()
print(prime_numbers)
# [2, 3, 5, 7, 11]
sort() сортує елементи списку за зростанням або спаданням. В якості альтернативи можна використовувати вбудовану функцію sorted() для тієї ж мети.
#practice // Архів книг // Python