Python Projects & Resources
57.1K subscribers
777 photos
342 files
328 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
Python Graphics.pdf
13.6 MB
Python Graphics
Bernard Korites, 2023
👍64🔥1
Starting a business at a young age: worth it or not
👇👇
https://t.iss.one/Learn_Startup/9
👍4
Build a Backend REST API with Python Django - Beginner.pdf
1.9 MB
Build a Backend REST API with Python & Django - Beginner, 2023
👍4🥰41
👍107👏5
Data Science Techniques
👍137
The Python Book.pdf
28.2 MB
The Python Book
Linux User, 2016
👏8👍5
Python for Teenagers.pdf
6.2 MB
Python for Teenagers
James R. Payne, 2023
👍9👏74
Essential Python Libraries for Data Analytics
👇👇
https://t.iss.one/sqlspecialist/522
👍41
👍84
🔅 Compress Images

from PIL import Image

# https://t.iss.one/pythondevelopersindia

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!")
👍204😁1
print("Happy New Year to everyone! 🎉 😄 🎆")
39👍11🔥6🤣4👌2🙏1
Python for Data Analysts
👇👇
https://t.iss.one/sqlspecialist/548
👍74
Hands-On.Web.Scraping.with.Python.pdf
10.8 MB
Hands-On Web Scraping with Python - 2023
#python #en
👍18🔥2
Python Tip for the day:
Use the "enumerate" function to iterate over a sequence and get the index of each element.

Sometimes when you're iterating over a list or other sequence in Python, you need to keep track of the index of the current element. One way to do this is to use a counter variable and increment it on each iteration, but this can be tedious and error-prone.

A better way to get the index of each element is to use the built-in "enumerate" function. The "enumerate" function takes an iterable (such as a list or tuple) as its argument and returns a sequence of (index, value) tuples, where "index" is the index of the current element and "value" is the value of the current element. Here's an example:
 Iterate over a list of strings and print each string with its index
strings = ['apple', 'banana', 'cherry', 'date']
for i, s in enumerate(strings):
print(f"{i}: {s}")

In this example, we use the "enumerate" function to iterate over a list of strings. On each iteration, the "enumerate" function returns a tuple containing the index of the current string and the string itself. We use tuple unpacking to assign these values to the variables "i" and "s", and then print out the index and string on a separate line.

The output of this code would be:
 apple
1: banana
2: cherry
3: date

Using the "enumerate" function can make your code more concise and easier to read, especially when you need to keep track of the index of each element in a sequence.
👍31😁54🥰2
Python.pdf
3 MB
Python HandBook
👍21