پایتون ( Machine Learning | Data Science )
23.6K subscribers
467 photos
57 videos
103 files
334 links
◀️اینجا با تمرین و چالش با هم پایتون رو یاد می گیریم

بانک اطلاعاتی پایتون
پروژه / code/ cheat sheet
+ویدیوهای آموزشی

+کتابهای پایتون
تبلیغات:
@alloadv

🔁ادمین :
@maryam3771
Download Telegram
PythonNotesForProfessionals (2).pdf
6.1 MB
نکات و ترفندهای Python برای حرفه ای ها


#pdf

🆔 @Python4all_pro
Pattern 11

n = 7
for i in range(1, n+1):
for j in range(1, i+1):
print(j, end=" ")
print()


#code #pattern

🆔 @Python4all_pro
⁉️ تمرین  : به نظر شما گزینه درست کدومه ؟

#code #test

🆔 @Python4all_pro
پایتون ( Machine Learning | Data Science )
⁉️ تمرین  : به نظر شما گزینه درست کدومه ؟ #code #test 🆔 @Python4all_pro
Explanation:
Each elements of the tuples are compared one by one and if maximum number of elements are there in tuple1 which are greater or equal to corresponding element of tuple2 then tuple1 is said to be greater than tuple2.


#code

🆔 @Python4all_pro
Pattern 12

n = 7
for i in range(1, n+1):
for j in range(1, i+1):
print(i, end=" ")
print()


#code #pattern

🆔 @Python4all_pro
آموزش پایتون برای علم داده

این مجموعه آموزشی رایگان و به زبان فارسی است ، برای افرادی که در ابتدای مسیر یادگیری علم داده هستند توصیه میشه
تدریس بر اساس کتاب
Python Data Science Handbook
می باشد

لینک مشاهده
https://www.youtube.com/@asadi26/featured

لینک کتاب
https://jakevdp.github.io/PythonDataScienceHandbook/


🆔 @Python4all_pro
گوگل یک دوره رایگان پایتون منتشر کرده که
در انتهای دوره به شما مدرک معتبر می‌دهد ، می‌توانید به لینکدینتون لینکش کنید

👉Google IT Automation with Python Professional Certificate

Learn in-demand skills like Python, Git, and IT automation to advance your career


https://www.coursera.org/professional-certificates/google-it-automation


🆔 @Python4all_pro
⁉️ تمرین  : به نظر شما گزینه درست کدومه ؟

#code #test

🆔 @Python4all_pro
پایتون ( Machine Learning | Data Science )
What is the output of the code?
Explanation:
Integer value of 2e-04(0.0002) is 0, True holds a value 1 and False a 0, integer value of 1.001 is 1. Thus total 0 + 1 + 0 + 8 + 1 + 1 = 11.


🆔 @Python4all_pro
آموزش یادگیری ماشین با پایتون

این پکیج آموزشی به زبان فارسی است و از مقدماتی شروع میکنه تا مباحث پیشرفته
مدرس دوره رضا اکبری موحد هستند

لینک دوره    :
https://www.youtube.com/watch?v=D9seeYDwsOc&list=PLaHuQQYle1bRGkL10LillHi1iwFN-8DsK



🆔 @Python4all_pro
Pattern 13

n = 7
for i in range(1, n+1):
for j in range(i, 0, -1):
print(j, end=" ")
print()



#code #pattern

🆔 @Python4all_pro
⁉️ تمرین  : به نظر شما گزینه درست کدومه ؟

#code #test

🆔 @Python4all_pro
پایتون ( Machine Learning | Data Science )
What is the value of L at the end of execution of the program?
Explanation:
The for loop will run for i = 0 to i = 3, i.e. 4 times(len(L) = 4). 2e-04 is same as 0.0002, thus L[i] = 6.22 + 0.0002 = 6.2202. String addition will result in concatenation, ‘a’ + ‘boy’ = ‘aboy’. False + True is True, it’ll return the integer value of 1. As tuples are immutable, the code will end with TypeError, but elements of L will be updated.


#code #test

🆔 @Python4all_pro
Media is too big
VIEW IN TELEGRAM
Python Backend Web Development Course (with Django)

This video is a full backend web development course with python. In the course, you will learn everything you need to know to start your web development journey with Python and Django.

Projects Built:

1. A Blog
💻 https://github.com/tomitokko/django-blog
2. A Weather App
💻 https://github.com/tomitokko/weather_detector
3. A Realtime Chat App
💻https://github.com/tomitokko/django-chat-app


🆔 @Python4all_pro
Pattern 14

n = 7
for i in range(n):
for j in range(n-i, n+1):
print(j, end=" ")
print()



#code #pattern

🆔 @Python4all_pro
Python Certification Preparation:4 Practice Tests for (2024)

Four Python Certification Preparation Tests with Detailed Explanations

🆓 Free
Original Price£59.99
Discount100% off
4 days left at this price!

یودمی یک دوره رایگان تست برای تمرین پایتون گذاشته که به مدت ۴ روز رایگانه، هدف اصلی این دوره این است که شما را به تمرینات و مهارت های ضروری در زمینه توسعه پایتون مجهز کند برای رسیدن به این هدف چهار آزمون تمرینی دقیق ساخته شده که طیف گسترده ای از موضوعات و سطوح مختلف دشواری را در بر می گیرد.

https://www.udemy.com/course/python-certification-preparation-4-practice-tests/?couponCode=662A73F8E048B76A8D08

#Free_course
#udemy

🆔 @Python4all_pro
🔅 Compress Images

from PIL import Image

# https://t.me/LearnPython3

in_img = 'input.png'
out_img = 'compressed.png'

# Open the image
with Image.open(in_img) as img:
# Save the compressed image
img.save(out_img, 'PNG', quality=80)

print(f"Image compressed successfully!")



#code

🆔 @Python4all_pro