Python Projects & Resources – Telegram
Python Projects & Resources
60.8K subscribers
857 photos
342 files
345 links
Perfect channel to learn Python Programming 🇮🇳
Download Free Books & Courses to master Python Programming
- Free Courses
- Projects
- Pdfs
- Bootcamps
- Notes

Admin: @Coderfun
Download Telegram
How to remove backgrounds of an image using python
👍232👏2
Learn_Python_In_A_Week_And_Master_It.pdf
2.6 MB
Learn Python in a Week and Master it 
Computer Programming Academy, 2020
👍7
General python usage
👍21
Python for Everybody (PY4E)
by Charles R. Severance (aka Dr. Chuck)


🎬 17 sections with multiple video lessons
👨‍🏫 Prof. Dr. Charles R. Severance
Completely free

https://www.py4e.com/lessons
👍104👏1
Image Processing in Python.pdf
5 MB
Image Processing in Python
Martin McBride, 2021
👍3🔥1👏1
Pros and cons Python
👍6
Common techniques for using the set() function in Python:

1. Create a set from a list:

my_list = [1, 2, 2, 3, 3, 3]
my_set = set(my_list)


2.Add an item to a set:

my_set = {1, 2, 3}
my_set.add(4)


3.Remove an item from a set by its value:

my_set = {1, 2, 3}
my_set.remove(3)


4.Check if an item is in a set:

my_set = {1, 2, 3}
if 3 in my_set:
print("The item is in the set.")


5.Get the length of a set:

my_set = {1, 2, 3}
set_length = len(my_set)


6.Loop through the items in a set:

my_set = {1, 2, 3}
for item in my_set:
print(item)


7.Get the union of two sets:

set1 = {1, 2, 3}
set2 = {3, 4, 5}
union_set = set1.union(set2)


8.Get the intersection of two sets:

set1 = {1, 2, 3}
set2 = {3, 4, 5}
intersection_set = set1.intersection(set2)
👍20