Python Learning
5.93K subscribers
433 photos
1 video
59 files
107 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
peps

The PEPs in this repo are published automatically on the web at https://peps.python.org/. To learn more about the purpose of PEPs and how to go about writing one, please start reading at PEP 1. Note that the PEP Index (PEP 0) is automatically generated based on the metadata headers in other PEPs.

Creator: Python
Stars ⭐️: 3.9k
Forked By: 1.6k
https://github.com/python/peps

#python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
The Top 5 Machine Learning Libraries in Python

A Gentle Introduction to the Top Python Libraries used in Applied Machine Learning

Rating ⭐️: 4.3 out 5
Students πŸ‘¨β€πŸŽ“ : 103,386
Duration ⏰ : 1hr 27min of on-demand video
Created by πŸ‘¨β€πŸ«: Mike West

πŸ”— Course Link


#Machine #Learning #Machine_Learning #python #libraries
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
πŸ‘‰Join @bigdataspecialist for moreπŸ‘ˆ
❀2πŸ‘2
How to Check Python Version on Linux, Mac & Windows

Python scripts can identify the version of Python installed on the computer. It enables you to validate if multiple versions are installed in the system. The script developed to check the Python version remains the same for windows OS, Mac OS, and Linux distributions. You can create a script by importing either the platform module or sys module of python.

import sys
sys. version

πŸ”— Read Online

#Python #python_3
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
πŸ‘1
What will be the output of the following Python code?

'%x %d' %(255, 255)
Anonymous Quiz
26%
β€˜ff, 255’
52%
β€˜255, 255’
9%
β€˜15f, 15f’
14%
Error
Python String Methods
πŸ‘3
The output of the two codes shown below is the same.
Anonymous Quiz
66%
True
34%
False
typeshed

Typeshed contains external type annotations for the Python standard library and Python builtins, as well as third party packages as contributed by people external to those projects.

This data can e.g. be used for static analysis, type checking or type inference.

For information on how to use typeshed, read below. Information for contributors can be found in CONTRIBUTING.md. Please read it before submitting pull requests; do not report issues with annotations to the project the stubs are for, but instead report them here to typeshed.

Creator: Python
Stars ⭐️: 3.7k
Forked By: 1.6k
https://github.com/python/typeshed

#python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
What will be the output of the following Python code?

'{0:.2f}'.format(1.234)
Anonymous Quiz
13%
β€˜1’
53%
β€˜1. 23’
31%
β€˜1. 234’
2%
β€˜1. 2’
πŸ”₯3
Top python frameworks for web development
πŸ‘2
How to Run Python Scripts: Step by Step Guide

What is the Script in Python?
A script in Python can be defined as a file that consists of Python code or a program. It ends with an extension as .py
An interpreter can execute a script in two distinct ways, as listed below: –

A script can be executed as a module or as a script itself.
A code that is written in an interactive Python command prompt session manner.

How to run Python code and scripts interactively?
Here are steps to do this:

Step 1) The programmer must open the command line in the interactive mode.

Step 2) In the next step, invoke the python interpreter in the command line by typing the following command: –

Command:

python

πŸ”— Read Online

#Python #python_3
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
The formatting method {1:<10} represents the ___________ positional argument, _________ justified in a 10 character wide field.
Anonymous Quiz
44%
first, right
29%
second, left
22%
first, left
5%
second, right
Scientific programming in python cheat sheet
πŸ‘2
What will be the output of the following Python code?

hex(255), int('FF', 16), 0xFF
Anonymous Quiz
31%
[0xFF, 255, 16, 255]
22%
(β€˜0xff’, 155, 16, 255)
22%
Error
24%
(β€˜0xff’, 255, 255)
πŸ‘2
Python Escape Character Sequences (Examples)

Escape characters or sequences are illegal characters for Python and never get printed as part of the output. When backslash is used in Python programming, it allows the program to escape the next characters.

Following would be the syntax for an escape sequence

\Escape character

Here, the escape character could be t, n, e, or backslash itself.

Types of Escape Sequence

Escape characters can be classified as non-printable characters when backslash precedes them. The print statements do not print escape characters.


πŸ”— Read Online

#Python #python_3
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
The output of the two codes shown is the same.
Anonymous Quiz
67%
True
33%
False
DND Server
Dark and Darker private server implementation written in Python


Creator: Snaacky
Stars ⭐️: 222
Forked By: 52
https://github.com/Snaacky/dndserver


#dnd #server
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @github_repositories_bds for more cool repositories.
*This channel belongs to @bigdataspecialist group