Python Learning – Telegram
Python Learning
5.95K subscribers
512 photos
2 videos
69 files
112 links
Python learning resources

Beginner to advanced Python guides, cheatsheets, books and projects.

For data science, backend and automation.
Join 👉 https://rebrand.ly/bigdatachannels

DMCA: @disclosure_bds
Contact: @mldatascientist
Download Telegram
Here are some of my personal favourite YouTube Playlists to Learn Python from Beginning to Advanced. 👇👇

1. Code With Harry
🔗 Playlist Link

2. Telusko
🔗 Playlist Link

3. Corey Schafer
🔗 Playlist Link

4. Harshit Vashisth
🔗 Playlist Link

5. ProgrammingKnowledge
🔗 Playlist Link

6. CS Dojo
🔗 Playlist Link

7. Codebasics
🔗 Playlist Link

8. Tech with Tim
🔗 Playlist Link

9. freeCodeCamp
🔗 Playlist Link

10. Clever Programmer
🔗 Playlist Link

11. Programming with Mosh
🔗 Playlist Link

12. Sentdex
🔗 Playlist Link
👍12🔥5🥰2😁2👏1
Here are some of my personal favourite Websites to Learn any Programming Language from Beginning to Advanced. 👇👇

1. LearnPython
🔗 Playlist Link

2. W3Schools
🔗 Playlist Link

3. Khan Academy
🔗 Playlist Link

4. FreeCodeCamp
🔗 Playlist Link

5. Sololearn
🔗 Playlist Link
🔥10👍81👏1
Python Interview Questions for Freshers🧠👨‍💻


1. What is Python?

Python is a high-level, interpreted, general-purpose programming language. Being a general-purpose language, it can be used to build almost any type of application with the right tools/libraries. Additionally, python supports objects, modules, threads, exception-handling, and automatic memory management which help in modeling real-world problems and building applications to solve these problems.

2. What are the benefits of using Python?
Python is a general-purpose programming language that has a simple, easy-to-learn syntax that emphasizes readability and therefore reduces the cost of program maintenance. Moreover, the language is capable of noscripting, is completely open-source, and supports third-party packages encouraging modularity and code reuse.
Its high-level data structures, combined with dynamic typing and dynamic binding, attract a huge community of developers for Rapid Application Development and deployment.

3. What is a dynamically typed language?
Before we understand a dynamically typed language, we should learn about what typing is. Typing refers to type-checking in programming languages. In a strongly-typed language, such as Python, "1" + 2 will result in a type error since these languages don't allow for "type-coercion" (implicit conversion of data types). On the other hand, a weakly-typed language, such as Javanoscript, will simply output "12" as result.

Type-checking can be done at two stages -

Static - Data Types are checked before execution.
Dynamic - Data Types are checked during execution.
Python is an interpreted language, executes each statement line by line and thus type-checking is done on the fly, during execution. Hence, Python is a Dynamically Typed Language.

4. What is an Interpreted language?
An Interpreted language executes its statements line by line. Languages such as Python, Javanoscript, R, PHP, and Ruby are prime examples of Interpreted languages. Programs written in an interpreted language runs directly from the source code, with no intermediary compilation step.

5. What is PEP 8 and why is it important?
PEP stands for Python Enhancement Proposal. A PEP is an official design document providing information to the Python community, or describing a new feature for Python or its processes. PEP 8 is especially important since it documents the style guidelines for Python Code. Apparently contributing to the Python open-source community requires you to follow these style guidelines sincerely and strictly.

6. What is Scope in Python?
Every object in Python functions within a scope. A scope is a block of code where an object in Python remains relevant. Namespaces uniquely identify all the objects inside a program. However, these namespaces also have a scope defined for them where you could use their objects without any prefix. A few examples of scope created during code execution in Python are as follows:

A local scope refers to the local objects available in the current function.
A global scope refers to the objects available throughout the code execution since their inception.
A module-level scope refers to the global objects of the current module accessible in the program.
An outermost scope refers to all the built-in names callable in the program. The objects in this scope are searched last to find the name referenced.
Note: Local scope objects can be synced with global scope objects using keywords such as global.
👍13
What will be the Output if we execute 2 == '2'
Anonymous Quiz
26%
True
54%
False
11%
2
9%
None of the Above
👍9🤔8🔥3💩2
Which of the following is the correct extension of the Python file?
Anonymous Quiz
5%
.python
1%
.pl
93%
.py
0%
.p
🔥5👍1
Which keyword is used for function in Python language?
Anonymous Quiz
10%
Function
74%
Def
13%
Func
3%
Define
12