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

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

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

🔁ادمین :
@maryam3771
Download Telegram
Explanation:
Here, 'result' is a list which is extending three times. When first time 'extend' function is called for 'result', the inner code generates a generator object, which is further used in 'extend' function. This generator object contains the values which are in 'list1' only (not in 'list2' and 'list3').
Same is happening in second and third call of 'extend' function in these generator object contains values only in 'list2' and 'list3' respectively. So, 'result' variable will contain elements which are only in one list (not more than 1 list).


🆔 @Python4all_pro
👍3
Convert Video Files to a Gif in Python

#code

🆔 @Python4all_pro
👍5
Create a Screen recorder using Python

#code

🆔 @Python4all_pro
👍8
Ultimate Python Cheatsheet 🔥.pdf
2.3 MB
هر روز یک Cheat Sheet
برگه تقلب شماره 14 پایتون

Cheat Sheet 14 : Ultimate Python cheat sheet


#cheat_sheet #pdf

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

#code #test

🆔 @Python4all_pro
Pattern 17

n = 7
for i in range(7):
if i % 2 == 0:
print("*", end=" ")
else:
print("#", end=" ")




#code #pattern

🆔 @Python4all_pro
👍5🏆31
Printing colored output in Python


#code

🆔 @Python4all_pro
👍15😍4❤‍🔥2
⁉️ تمرین  : به نظر شما گزینه درست کدومه ؟

#code #test

🆔 @Python4all_pro
Pattern 18

n = 7
for i in range(7):
if i % 3 == 2:
print("@", end=" ")
elif i % 3 == 1:
print("#", end=" ")
else:
print("*", end=" ")




#code #pattern

🆔 @Python4all_pro
👍7❤‍🔥3🤷‍♂1
💠 Encrypt PDF files using Python




#code

🆔 @Python4all_pro
🆒3
Learn Python With Amazing Experience .pdf
6.7 MB
یادگیری پایتون با مثالهای ساده و جالب

#pdf

🆔 @Python4all_pro
👍7
🔅 Remove Image Background using Python




#code

🆔 @Python4all_pro
❤‍🔥6👍2😍2🏆1
کتابخانه های پایتون مجموعه ای از توابع مفید هستند که نیاز به نوشتن کد های اضافی را حذف می کنند و همین ویژگی ها هستند که پایتون را جذاب تر می کند. تعداد کتابخانه های پایتون بسیار بسیار زیاد است؛ بیش از 137000 کتابخانه پایتون وجود دارد. کتابخانه ها نقش حیاتی در توسعه یادگیری ماشین، علم داده، برنامه های کاربردی نظیر پردازش تصویر و داده و موارد دیگر ایفا می کنند.

#کتابخانه
#library

🆔 @Python4all_pro
🆒9👍6
Python Roadmap



🆔 @Python4all_pro
❤‍🔥9👍5👾2
Pattern 19

n = 7
for i in range(1, n+1):
if i % 2 == 0:
print("$", end=" ")
else:
print(i, end=" ")




#code #pattern

🆔 @Python4all_pro
👍10
SQL Roadmap for Data Analyst




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

#code #test

🆔 @Python4all_pro
👍4🆒1
What will be the output of the following Python code?
Anonymous Quiz
11%
0.0 0.1 0.2 0.3 …
26%
0 1 2 3 …
13%
0.0 1.0 2.0 3.0 …
51%
none of the mentioned
👍8
Pattern 20

n = 7
for i in range(1, n+1):
if i % 2 == 0:
print(i**2, end=" ")
else:
print("*", end=" ")



#code #pattern

🆔 @Python4all_pro
👍1😍1