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 860 subscribers, ranking 6 480 in the Technologies & Applications category and 2 947 in the Ukraine region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 20 860 subscribers.
According to the latest data from 12 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -180 over the last 30 days and by -7 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 9.57%. 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 1 996 views. Within the first day, a publication typically gains 1 127 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 12.
- 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 13 June, 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.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 // Архів книг // Pythonvowels = {'a', 'e', 'i', 'u'}
vowels.add ('o')
print('Vowels are:', vowels)
# Vowels are: {'a', 'i', 'o', 'u', 'e'}
vowels.add('a')
print('Vowels are:', vowels)
# Vowels are: {'a', 'i', 'o', 'u', 'e'}
add() додає заданий елемент у множину. Якщо елемент вже присутній, метод не додає жодного елемента. Також можна додати кортежі до множини. Як і у випадку зі звичайними елементами, той самий кортеж можна додати лише один раз.
#practice // Вакансії IT // Pythonsymbol_number = "012345"
print(string1. isnumeric()) # True
text = "Python3"
print(string2. isnumeric()) # False
isnumeric() перевіряє, чи всі символи у рядку є числовими. Повертає True, якщо всі символи є числовими. Інакше — False. У цьому прикладі для symbol number повертається True, тому що "012345" є числами. Для тексту повертається False.
#practice // Вакансії IT // Pythonfrom math import pi
s = f'pi: {pi: .3f}' # pi: 3.142
num = 714
s = f'ThePyU: {num}' # 'ThePyU: 714'
d = {'one': 1}
s = f"one: {d['one']}" # 'one: 1'
s = 'The {} Universe:
{value}'.format('Python', value=714)
# 'The Python Universe: 714'
num = 4
s = 'string: %s' % num # 'string: 4'
🔴f-рядки — зручний спосіб включення значення виразу всередині рядків (з версії 3.6).
🔴str.format() — повертає копію рядка, в якому на місці {} буде поставлено зазначені аргументи.
🔴оператор % — форматування по-старому: в стилі C.
#theory // Архів книг // Pythonlen() повертає кількість елементів (довжину) в об'єкті. Якщо неможливо передати аргумент або передається неприпустимий аргумент, викликається виняток TypeError.
testList = []
print(testList, 'length is', len(testList) )
# [] length is 0
testList = [1, 2, 3]
print(testList, 'length is', len(testList))
# [1, 2, 3] length is 3
testTuple = (1, 2, 3)
print(testTuple, 'length is', len(testTuple))
# (1, 2, 3) length is 3
testRange = range(1, 10)
print('Length of', testRange, 'is', len(testRange))
# Length of range(1, 10) is 9
#practice // Вакансії IT // Python
Available now! Telegram Research 2025 — the year's key insights 
