Python Learning
5.93K subscribers
452 photos
1 video
63 files
109 links
Python Coding resources, Cheat Sheets & Quizzes! πŸ§‘β€πŸ’»

Free courses: @bigdataspecialist

@datascience_bds
@github_repositories_bds
@coding_interview_preparation
@tech_news_bds

DMCA: @disclosure_bds

Contact: @mldatascientist
Download Telegram
Encapsulation in Python 🚑

(Here's an example) ---------- ☝️

Encapsulation helps to bundle data and methods inside a class, restricting direct access to certain attributes and methods.

We use private attributes/methods (with a _ or __ prefix) to achieve this.
What will be the output of the following Python expression?

~100?
Anonymous Quiz
21%
101
27%
-101
31%
100
21%
-100
πŸ”₯4
Abstraction in Python 🎭

Here's an example -------------------☝️

This concept focuses on exposing only essential information to the outside world while hiding implementation details.

We use abstract classes and methods to define a common interface.

At this point if Abstraction and Encapsulation confuse you! πŸ‘‡

Abstraction conceals the implementation details, but doesn't hide the data itself.

On the other hand, Encapsulation hides the data and restricts unwanted use from external sources.
πŸ‘7
What will be the output of the following Python code snippet?

['hello', 'morning'][bool('')]
Anonymous Quiz
31%
error
46%
no output
18%
hello
4%
morning
Polymorphism in python πŸ•³

This allows us to use a single interface for different data types or classes. We can achieve this through method overriding, where a subclass provides a different implementation for a method defined in its parent class.

Let's understand with example -☝️
πŸ‘5
πŸ‘4😁1
What will be the output of the following Python code?
Anonymous Quiz
24%
pass
55%
true
12%
false
10%
error
πŸ“š 9 must-have Python developer tools.

1. PyCharm IDE

2. Jupyter notebook

3. Keras

4. Pip Package

5. Python Anywhere

6. Scikit-Learn

7. Sphinx

8. Selenium

9. Sublime Text
πŸ‘6😁2❀1
What will be the output of the following Python code?
Anonymous Quiz
17%
error
12%
hello
52%
good
19%
bad
πŸ‘2
71 Python projects with source code .pdf
42 KB
71 Python projects with source code
What will be the output of the following Python code snippet?

not(10<20) and not(10>30)
Anonymous Quiz
24%
true
64%
false
8%
error
5%
no output
πŸ‘2
🐍 Python Telegram Chat Bot: Create Your Own in Minutes Using telegram-bot --upgrade Library
🐍

πŸŽ₯ YouTube Video: 
https://youtu.be/ZfWHcvEFknk

πŸ”— Source Code:
https://www.samcodehub.com/Bot/bot.html

Description:
Learn how to create your own Telegram Chat Bot using Python and the telegram-bot --upgrade library. Our beginner's guide will show you how to build a bot in minutes. 

#Python #Programming #OpenSource #Project #SourceCode #TelegramBot #ChatBot
πŸ‘2
What will be the output of the following Python code snippet?
Anonymous Quiz
41%
00000hi
16%
000hi
14%
hi000
28%
error
😁2
Python Variables: How to Define/Declare String Variable Types

What is a Variable in Python?
A Python variable is a reserved memory location to store values. In other words, a variable in a python program gives data to the computer for processing.

Python Variable Types
Every value in Python has a datatype. Different data types in Python are Numbers, List, Tuple, Strings, Dictionary, etc. Variables in Python can be declared by any name or even alphabets like a, aa, abc, etc.

How to Declare and use a Variable
Let see an example. We will define variable in Python and declare it as β€œa” and print it.

1 a=100 
2 print (a)


πŸ”— Read Online

#Python #python_3
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
❀2
What will be the output of the following Python expression if x=456?

print("%-06d"%x)
Anonymous Quiz
31%
000456
36%
456000
11%
456
22%
error