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.
vowels = {'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 // Pythonissubset() повертає True, якщо множина A є підмножиною B, тобто якщо всі елементи множини A присутні в сеті B. Інакше — False.
A = {'a', 'c', 'e'}
B = {'a', 'b', 'c', 'd', 'e'}
print('A is subset of B:', A.issubset(B))
# True
print('B is subset of A:', B.issubset(A))
# False
#practice // Вакансії IT // PythonAPI, розроблений для початківців, які ніколи раніше ним не займались, а також для професіоналів, які хочуть швидко ознайомитися з FastAPI або Flask.
Рік: 2021
Мова: 🇬🇧
Автори: Rehan Haider
#books // Архів книг // Pythonrandom_string = ' this is good '
print(random_string.lstrip())
# this is good
print(random_string.lstrip('sti'))
# this is good
print(random_string.lstrip('s ti'))
# his is good
lstrip() повертає копію рядка з видаленими провідними символами. Усі комбінації символів у аргументі chars видаляються зліва від рядка до першої невідповідності. Якщо аргумент chars не вказано, всі провідні пробіли видаляються з рядка.
#practice // Вакансії IT // PythonA = {1, 2, 3, 4}
B = {2, 3, 4, 5, 6}
C = {4, 5, 6, 9, 10}
A. intersection_update(B, C)
print('A =', A) # {4}
print('B =', B) # {2, 3, 4, 5, 6}
print('C =', C) # {4, 5, 6, 9, 10}
intersection update() видаляє елементи, яких немає в обох множинах (або у всіх множинах, якщо порівняння виконується між більше, ніж двома множинами).
На відміну від методу intersection(), який повертає нову множину без небажаних елементів, метод intersection update() видаляє непотрібні елементи з вихідної множини.
#practice // Вакансії IT // Python