10 May 2026, 07:24 UTC929 views1 reactionsread 8 August 2026 Forwarded from @CodesSnippetPhoto
🔥 Ready to battle brains?
Join the Tech Hub BBS × Matiks League 🧠⚡️
📅 League Starts: 7 June 2026
⏳ Join Before: 7 June 2026
Join the League : https://app.matiks.org/league/69fa2216767000d55b0e3c67
🔐 League Code: 5980
🎯 Play games & challenges, earn XP/Statiks, climb the leaderboard, and win cash prizes worth ₹3K–₹10K + exclusive Matiks goodies!
📲 Scan the QR, join the league, and represent Tech Hub BBS with pride…
❤1
Signed </> ᴍᴜᴋᴇsʜ </>
13 Apr 2026, 17:42 UTC≈1,410 viewsread 8 August 2026 File
@Python_Codes_Pro
Signed Siddharth sharma
5 Oct 2025, 14:31 UTC≈3,060 views6 reactionsread 8 August 2026 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
❤6
Signed राम सियाराम सियाराम जय जय राम 🙏 तुम साथ हो जो मेरे, किस चीज की कमी है ।
3 Oct 2025, 16:50 UTC≈2,930 views1 reactionsread 8 August 2026 Join BCA/MCA developers group on arattai
A Indian chat app by zoho Supported by government
https://chat.arattai.in/groups/t43545f313237373536333834333438343434363931355f32303030353533333235382d47437c3031303131353032353136343137353935303935383035393830
❤1
Signed राम सियाराम सियाराम जय जय राम 🙏 तुम साथ हो जो मेरे, किस चीज की कमी है ।
29 Jul 2025, 14:25 UTC≈3,640 views6 reactionsread 8 August 2026 Count Printable character from file 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'…
❤6
Signed </> ᴍᴜᴋᴇsʜ </>
28 Jul 2025, 06:35 UTC≈2,580 views1 reactionsread 8 August 2026 Forwarded from @CodesSnippet
explore free api : https://freeapi.hashnode.space/freeapi-docs/freeapi
Jᴏɪɴ ᴜs :- @CodesSnippet
❤1
Signed </> ᴍᴜᴋᴇsʜ </>
28 Jul 2025, 06:29 UTC≈2,780 views4 reactionsread 8 August 2026 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': …
❤4
Signed </> ᴍᴜᴋᴇsʜ </>
2 Jul 2025, 02:52 UTC≈2,850 views0 reactionsread 8 August 2026 Join Coding
https://t.me/addlist/2UhsQW_cGzkxMzg1
Signed राम सियाराम सियाराम जय जय राम 🙏 तुम साथ हो जो मेरे, किस चीज की कमी है ।
2 Jul 2025, 02:50 UTC≈2,790 views2 reactionsread 8 August 2026 String functions
https://t.me/Python_Codes_Pro/86
20 Questions on python loops:
https://t.me/Python_Codes_Pro/135
❤2
Signed राम सियाराम सियाराम जय जय राम 🙏 तुम साथ हो जो मेरे, किस चीज की कमी है ।
26 Jun 2025, 15:48 UTC≈2,770 views7 reactionsread 8 August 2026 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=" ")
…
❤7
Signed </> ᴍᴜᴋᴇsʜ </>
19 Jun 2025, 15:55 UTC≈2,540 views4 reactionsread 8 August 2026 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
❤4
Signed </> ᴍᴜᴋᴇsʜ </>
19 Jun 2025, 15:29 UTC≈2,230 views2 reactionsread 8 August 2026 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
❤2
Signed </> ᴍᴜᴋᴇsʜ </>
Showing the 12 most recent of 20 posts we hold for @Python_Codes_Pro. View and reaction counts are the latest single reading for each post, not a live figure, and a recent post is still accumulating both. A view count marked ≈ was rounded by Telegram before we ever saw it — t.me prints views in full below 1,000 and to three significant figures above, so ≈1,200,000 means somewhere between 1,150,000 and 1,249,999. Unmarked counts are exact. Text is reproduced from the public post preview and truncated for length.