Telegram Group Search
السلام عليكم ورحمة الله و بركاته،

🔝🏆قائمة بافضل القنوات التعليمية والتقنية على تليجرام:

👨‍💻القناة الرئيسية لتعلم البرمجة العامة:

T.me/Learn Programming تعلم البرمجة/com.SuDevelopers

🖥 قناة لتعليم البرمجة بلغة ++c وكل ما يخص هذه اللغة:
https://www.tg-me.com/+4mUtC6_A2VozODRk
أو
https://www.tg-me.com/NoCplus

☕️ قناة لتعليم لغة البرمجة #Java و كل ما يخص هذه اللغة:
https://www.tg-me.com/+hwjabzh_UDM2Yjlk
او
https://www.tg-me.com/No_Java

🐍قناة لتعلم لغة البرمجة #Python وكل ما يخص هذه اللغة

رابط القناة:
https://www.tg-me.com/+lUt9i0yUBWpjN2Vk
او

https://www.tg-me.com/NoPython

📲📱⌚️ قناة لتعليم البرمجة بلغة #Dart واطار عمل #Flutter لعمل تطبيقات اندرويد وiOs ومواقع الويب وكل ما يتعلق بهذه اللغة

رابط القناة:
https://www.tg-me.com/+mn-SCUOXQ3wwOWFk

🎮🕹 قناة لتعليم البرمجة بلغة سي شارب #C وكل ما يتعلق بهذه اللغة من كتب ومراجع ودورات وتطوير الالعاب باستخدام محرك #Unity

رابط القناة:
https://www.tg-me.com/+gg3GTB6TbXIwOTA0


💻 تطوير مواقع وتطبيقات الويب وكل ما يخصه من كتب و دورات #Web #development

رابط القناة:

https://www.tg-me.com/+EncBUDGKli02NWY0

📟⚡️قناة لتعليم #الالكترونيات و كل ما يخصها من الكتب والدورات

رابط القناة:
www.tg-me.com/Easy4Electronics

📚 قناة الكتب البرمجية العامة :
www.tg-me.com/programmingOn

💎قناة التعلم الالي والتعلم العميق وعلم البيانات والذكاء الإصطناعي:
https://www.tg-me.com/+-vXywlSNpn00ZjNk

🏎🚜قناة لتعلم برمجة لوح التطوير اردوينو وعمل مشاريع الكترونية ذكية باستخدامه:
https://www.tg-me.com/+4gEIKcjX3TRmNWQ0


مجموعة المناقشة البرمجية
Https://www.tg-me.com/LearnProgrammin9

🌃🌌🌇🏞 اجمل الخلفيات عالية الدقة:
https://www.tg-me.com/Top_Hd_Wallpapers

🛠📲 جديدنا من التطبيقات
https://www.tg-me.com/Crydata_Apps


⭐️Programming Memes
Https://www.tg-me.com/Memes4Developers

💎إشتراك في اللائحة اضغط هنا

📌لإضافة قناتك الى هذه القائمة تواصل مع الإدارة عبر الرابط: @tellmy_bot

♻️فضلا شارك هذا المنشور مع الاصدقاء والمهتمين♻️
#Python #Pandas 🐼
@SuDevelopers @NoPython

♻️فضلا شارك هذا المنشور مع الاصدقاء والمهتمين♻️
#Python PIP #Cheatsheet 👆
@SuDevelopers @NoPython

♻️فضلا شارك هذا المنشور مع الاصدقاء والمهتمين♻️
⌨️ Hide secret message in image using Python
⌨️ إخفاء رسالة سرية في صورة باستخدام #Python
@SuDevelopers @NoPython

♻️فضلا شارك هذا المنشور مع الاصدقاء والمهتمين♻️
⌨️ Grammar Correction using Python
  ⌨️ التصحيح الاملائي للنص باستخدام #Python
@SuDevelopers @NoPython

♻️فضلا شارك هذا المنشور مع الاصدقاء والمهتمين♻️
Python Cheatsheet ♥️

1. Common Data Types
int, float – numbers
str – text
list – ordered, changeable collection
dict – key-value pairs
tuple – like list, but unchangeable
set – unique, unordered items

2. Essential Functions
print() – display output
type() – check data type
len() – count items
range() – generate numbers
input() – take user input

3. String Methods
.upper(), .lower() – change case
.strip() – remove whitespace
.replace() – swap text
.split() – break into list

4. List Methods
append() – add item
pop() – remove item
sort() – sort list
[1:4] – slicing (get part of list)

5. Dictionary Basics
Access: mydict['key']
Safe access: mydict.get('key')
Add/Update: mydict['new'] = value

6. Control Flow
if / elif / else – conditions
for – loop over items
while – loop with condition
break / continue – control loop

7. Functions
def – define a function
return – return a value
lambda – short anonymous function

8. Useful Built-in Modules
math – sqrt, pi, round
random – random numbers, choices
datetime – current date/time
os – system & file handling

9. Popular Libraries for Data Work
NumPy – numerical operations
Pandas – dataframes and analysis
Matplotlib

React with ❤️ for more useful Cheatsheets
ملخص سريع لأهم الدوال في #Python
@SuDevelopers @NoPython

♻️فضلا شارك هذا المنشور مع الاصدقاء والمهتمين♻️

#python
How to convert image to pdf in Python

# Python3 program to convert image to pfd
# using img2pdf library
 
# importing necessary libraries
import img2pdf
from PIL import Image
import os
 
# storing image path
img_path = "Input.png"
 
# storing pdf path
pdf_path = "file_pdf.pdf"
 
# opening image
image = Image.open(img_path)
 
# converting into chunks using img2pdf
pdf_bytes = img2pdf.convert(image.filename)
 
# opening or creating pdf file
file = open(pdf_path, "wb")
 
# writing pdf files with chunks
file.write(pdf_bytes)
 
# closing image file
image.close()
 
# closing pdf file
file.close()
 
# output
print("Successfully made pdf file")

pip3 install pillow && pip3 install img2pdf

تحويل صورة إلى ملف PDF باستخدام #Python
@SuDevelopers @NoPython

♻️فضلا شارك هذا المنشور مع الاصدقاء والمهتمين♻️
2025/04/11 15:02:48
Back to Top
HTML Embed Code: