Python Projects & Resources
56.9K subscribers
776 photos
342 files
327 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
Hands-On Python with 50 Exercises.pdf
15 MB
Hands-On Python
Musa Arda, 2022
7👍2🥰1
Practical Guide To Python Basics.pdf
51.9 MB
Practical Guide to Python Basics
Mattie Ingram, 2022
6👍4🔥1
Python Geospatial Development
👇
book
👍5
Coding Projects in python for beginners
👇👇
shivajiMaharaj.py
9 KB
Draw Shivaji Maharaj Using Python 😍
👍75🔥1
Zelle_J_Python_Programming_An_Introduction.pdf
5.7 MB
Python Programming
John M. Zelle, 2017
👍71
data-visualization-with-python-create-an-impact-with.epub
16.5 MB
Data Visualization with Python
Mario Dobler, 2019
👍2
Difference between list and tuple in python

🔸List is mutable ( you can modify the original list) and it's values are written in sqare brackets [ ]

🔸Tuple is immutable ( you can't modify it) and it's values are written in parentheses ( ) delimited by comma( , )

🔸To convert list to tuple - we use tuple() function
list1 = [1,2,3]
print(tuple(list1)) Output : (1,2,3)

🔸 For single element list
list1 = [1]
print(tuple(list1)) Output : (1, )

▪️a tuple is a tuple because of comma not because of parentheses
👍222🔥2👏1😐1
Building Python Web APIs with FastAPI.pdf
9.4 MB
Building Python Web APIs with FastAPI
Abdulazeez Abdulazeez Adeshina, 2022
👍5
3 Ways to merge Dictionaries in python
👍4
Learning Python

📖 book
👍12
Python-Algorithms.pdf
4.7 MB
Python Algorithms
Magnus Lie Hetland, 2010
👍7
Intro to Python for Computer Science.pdf
17.5 MB
Intro to Python for Computer Science and Data Science
Paul & Harvey Deitel, 2022
👍91🔥1
Efficient Prime Number Detection Python
👍20