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
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
Metaprogramming with Python.pdf
12.5 MB
Metaprogramming with Python
Sulekha AloorRavi, 2022
👍71
Python tricks and tips

Reverse a list

Code snippet to copy:

a=[10,9,8,7]
print(a[::-1])
👍23🏆4