Python Codes Basic to Advance
Открыть в Telegram
Python Codes Basic to Advance All Codes @C_Codes_pro @CPP_Codes_pro @Java_Codes_Pro @nodejs_codes_pro Discussion @bca_mca_btech
Больше2 813
Подписчики
Нет данных24 часа
-47 дней
-2430 день
Загрузка данных...
Похожие каналы
Облако тегов
Нет данных
Возникли проблемы? Пожалуйста, обновите страницу или обратитесь к нашему support-менеджеру .
Входящие и исходящие упоминания
---
---
---
---
---
---
Привлечение подписчиков
январь '26
январь '26
+3
в 0 каналах
декабрь '25
+31
в 0 каналах
Get PRO
ноябрь '25
+41
в 0 каналах
Get PRO
октябрь '25
+36
в 0 каналах
Get PRO
сентябрь '25
+63
в 0 каналах
Get PRO
август '25
+58
в 0 каналах
Get PRO
июль '25
+71
в 0 каналах
Get PRO
июнь '25
+62
в 0 каналах
Get PRO
май '25
+95
в 0 каналах
Get PRO
апрель '25
+76
в 0 каналах
Get PRO
март '25
+54
в 0 каналах
Get PRO
февраль '25
+79
в 0 каналах
Get PRO
январь '25
+109
в 0 каналах
Get PRO
декабрь '24
+100
в 0 каналах
Get PRO
ноябрь '24
+81
в 0 каналах
Get PRO
октябрь '24
+134
в 0 каналах
Get PRO
сентябрь '24
+191
в 2 каналах
Get PRO
август '24
+211
в 0 каналах
Get PRO
июль '24
+185
в 2 каналах
Get PRO
июнь '24
+303
в 2 каналах
Get PRO
май '24
+117
в 1 каналах
Get PRO
апрель '24
+171
в 2 каналах
Get PRO
март '24
+180
в 3 каналах
Get PRO
февраль '24
+142
в 1 каналах
Get PRO
январь '24
+442
в 1 каналах
Get PRO
декабрь '23
+308
в 2 каналах
Get PRO
ноябрь '230
в 7 каналах
Get PRO
октябрь '23
+27
в 0 каналах
Get PRO
сентябрь '23
+34
в 0 каналах
Get PRO
август '23
+86
в 0 каналах
Get PRO
июль '23
+47
в 0 каналах
Get PRO
июнь '23
+43
в 0 каналах
Get PRO
май '23
+35
в 0 каналах
Get PRO
апрель '23
+423
в 0 каналах
| Дата | Привлечение подписчиков | Упоминания | Каналы | |
| 03 января | 0 | |||
| 02 января | +1 | |||
| 01 января | +2 |
Посты канала
Sabhi log arattai app install karlo
Hame apne desh ki app ko support karna chahiye
Vahi pe ek doosre se bat Karo whatsapp ki bajaye
Dheere dheere sare log whatsapp chhod ke arattai use karo
Isme aapko hamare sare arattai app me jo groups/channels hai aur honge vo milte rahenge 👇
https://aratt.ai/@ignoustudycenter
| 2 | Join BCA/MCA developers group on arattai
A Indian chat app by zoho Supported by government
https://chat.arattai.in/groups/t43545f313237373536333834333438343434363931355f32303030353533333235382d47437c3031303131353032353136343137353935303935383035393830 | 577 |
| 3 | New Bot
@VideoCompress0bot
Direct send your large size video to this bot and it will convert to small size
Warning: Don't send already compressed video or low quality video other wise it will increase those size instead decreasing | 277 |
| 4 | Join @LogicBots
For
Getting Updates of our bots
Sujjestion for new bot
Sujjestion for new features
https://t.me/logicBots | 364 |
| 5 | Голосовое сообщение | 29 |
| 6 | Count Printable character using Python
from string import printable
def count_char():
with open(r"bookbot/books/frankenstein.txt", "r", encoding="utf-8") as f:
file_contents = f.read().lower()
char=list(printable)
d=dict()
for i in char:
d[i]=0
for i in file_contents:
if i in d:
d[i]+=1
print(d)
count_char()
Sample OutPUt:
{'0': 18, '1': 91, '2': 19, '3': 15, '4': 12, '5': 12, '6': 9, '7': 18, '8': 24, '9': 9, 'a': 25894, 'b': 4868, 'c': 9011, 'd': 16318, 'e': 44538, 'f': 8451, 'g': 5795, 'h': 19176, 'i': 23927, 'j': 497, 'k': 1661, 'l': 12306, 'm': 10206, 'n': 23643, 'o': 24494, 'p': 5952, 'q': 325, 'r': 20079, 's': 20360, 't': 29493, 'u': 10111, 'v': 3737, 'w': 7450, 'x': 691, 'y': 7756, 'z': 235, 'A': 0, 'B': 0, 'C': 0, 'D': 0, 'E': 0, 'F': 0, 'G': 0, 'H': 0, 'I': 0, 'J': 0, 'K': 0, 'L': 0, 'M': 0, 'N': 0, 'O': 0, 'P': 0, 'Q': 0, 'R': 0, 'S': 0, 'T': 0, 'U': 0, 'V': 0, 'W': 0, 'X': 0, 'Y': 0, 'Z': 0, '!': 201, '"': 0, '#': 1, '$': 2, '%': 1, '&': 5, "'": 0, '(': 35, ')': 35, '*': 97, '+': 0, ',': 5962, '-': 173, '.': 3121, '/': 8, ':': 211, ';': 1350, '<': 0, '=': 0, '>': 0, '?': 208, '@': 0, '[': 2, '\\': 0, ']': 2, '^': 0, '_': 124, '`': 0, '{': 0, '|': 0, '}': 0, '~': 0, ' ': 70480, '\t': 0, '\n': 7631, '\r': 0, '\x0b': 0, '\x0c': 0} | 690 |
| 7 | explore free api : https://freeapi.hashnode.space/freeapi-docs/freeapi
Jᴏɪɴ ᴜs :- @CodesSnippet | 505 |
| 8 | Random User API
import requests
response = requests.get('https://randomuser.me/api/')
if response.status_code == 200:
data = response.json()
print(data)
else:
print(f"Request failed with status code: {response.status_code}")
SAMPLE OUTPUT
{'results': [{'gender': 'male', 'name': {'title': 'Mr', 'first': 'Milan', 'last': 'Abramović'}, 'location': {'street': {'number': 2467, 'name': 'Kosmajska'}, 'city': 'Velika Plana', 'state': 'Pirot', 'country': 'Serbia', 'postcode': 56590, 'coordinates': {'latitude': '59.7052', 'longitude': '-4.6310'}, 'timezone': {'offset': '+2:00', 'description': 'Kaliningrad, South Africa'}}, 'email': 'milan.abramovic@example.com', 'login': {'uuid': '70836e88-df56-4d84-9ffb-019ce46966f0', 'username': 'yellowpanda148', 'password': 'walton', 'salt': 'Z7tx2Gqu', 'md5': '9eef7a132080107f50ea08cbe15172a7', 'sha1': '5eff350899a05ded6d669dbd866db110cc15c408', 'sha256': '334aa1d791d2b4170edaf6b7d14fb9b5ef319edea4c680dab50ea42c8caa22d4'}, 'dob': {'date': '1949-12-26T22:18:46.892Z', 'age': 75}, 'registered': {'date': '2014-05-18T23:17:21.440Z', 'age': 11}, 'phone': '032-3543-907', 'cell': '061-1365-392', 'id': {'name': 'SID', 'value': '235500700'}, 'picture': {'large': 'https://randomuser.me/api/portraits/men/78.jpg', 'medium': 'https://randomuser.me/api/portraits/med/men/78.jpg', 'thumbnail': 'https://randomuser.me/api/portraits/thumb/men/78.jpg'}, 'nat': 'RS'}], 'info': {'seed': 'dff3fde1e00d2302', 'results': 1, 'page': 1, 'version': '1.4'}} | 632 |
| 9 | Join Coding
https://t.me/addlist/2UhsQW_cGzkxMzg1 | 787 |
| 10 | String functions
https://t.me/Python_Codes_Pro/86
20 Questions on python loops:
https://t.me/Python_Codes_Pro/135 | 761 |
| 11 | Reverse an array
import numpy as np
def Reversed(numbers:np.array):
# Reverse an array
start = 0
last = len(numbers)-1
while (start < last):
temp = numbers[last]
numbers[last] = numbers[start]
numbers[start] = temp
start+=1
last-=1
numbers=np.array([2,4,6,8,10,12,14,16])
Reversed(numbers)
for item in range(0,len(numbers)):
print(numbers[item],end=" ")
# time complexbilty: 0(n)
# space complexbilty: 0(1)
Output:
16 14 12 10 8 6 4 2 | 753 |
| 12 | 0-1 Triangle Pattern
def zero_one_triangle(num):
"""
Purpose: for triangle pattern
"""
for i in range(1,num+1):
for j in range(1,i+1):
# print(i+j)
if ((i+j)%2)==0:
print("1",end=" ")
else:
print("0",end=" ")
print()
zero_one_triangle(5)
Output:
1
0 1
1 0 1
0 1 0 1
1 0 1 0 1 | 738 |
| 13 | Floyd`s Triangle Pattern.
def floyd_triangle(n):
count=1
for i in range(0, n+1):
for j in range(0, i):
print(count,end=" ")
count+=1
print()
floyd_triangle(5)
OutPut:
1
2 3
4 5 6
7 8 9 10
11 12 13 14 15 | 671 |
| 14 | Ai telegram chatbot creation project
https://youtu.be/s6EQACzmLII?si=pnDL8IdAPC7HSlJl | 582 |
| 15 | Inverted rotated Pyramid of number
def invert_half_pyra(n: int):
for i in range(0, n):
for j in range(1, n - i + 1):
print(j, end="")
print()
invert_half_pyra(n=5)
Output;
12345
1234
123
12
1 | 635 |
| 16 | Inverted Half Rotated Pyramid
def inverted_half_pyramid(n):
for i in range(0, n+1):
for j in range(0, n-i):
print(" ",end="")
for j in range(0, i):
print("*",end="")
print()
inverted_half_pyramid(6)
Output:
*
**
***
****
*****
****** | 560 |
| 17 | Hollow Rectangle Pattern in python
def hollow_rectangle_pattern(Totalrow,TotalCol):
for i in range(1, Totalrow+1):
for j in range(1,TotalCol+1):
if (i==1 or j==1 or i==Totalrow or j==TotalCol):
print("*",end="")
else:
print(" ",end="")
print("")
hollow_rectangle_pattern(4,7)
Output:
*******
* *
* *
******* | 570 |
| 18 | We have started new Channel.
Is channels me aapko 8000 se lekar 1lack+ salary ke jobs achive karne ke liye kya skills required hoti hain unke bare me batayenge.
Kya kya jaroori hota hai cv, experience, education and knowledge se lekar bahut kuchh
Har ek field jaise accounting, Software development se lekar Har tarah ke work ki skills.
To wait karne ki bajay join karlo👇
@NaukriSkills | 683 |
| 19 | How can you merge two DataFrames in Pandas? | 751 |
| 20 | What does the groupby() function in Pandas allow you to do? | 671 |
