Python Projects & Resources
57.1K subscribers
777 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
Python course by Google

https://developers.google.com/edu/python

No registration or download needed.
👍61
Six Steps to Defining a Function

1. What should your function do? Type a couple of example calls.
2. Pick a meaningful name (often a verb or verb phrase): What is a short answer to "What does
your function do"?
3. Decide how many parameters the function takes and any return values
4. Describe what your function does and any parameters and return values in the docstring
5. Write the body of the function
6. Test your function. Think about edge cases.
👍6
Which of the following is correct way to define a variable in python?
Anonymous Quiz
9%
123_variable
83%
variable_123
6%
variable-1
1%
5variable-2_4
👍82