Python Learning
5.92K subscribers
426 photos
1 video
59 files
106 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
Python OOP : Object Oriented Programming in Python

Python Object Oriented programming OOP advanced / Scripting for projects / automation / interview questions / beginners

⏰ Free Online Course
🎬 video lessons
Rating ⭐️: 4.6 out 5
Students πŸ‘¨β€πŸŽ“ : 2,418
Duration ⏰ : 2hr 10min of on-demand video
Created by πŸ‘¨β€πŸ«: Deepali Srivastava

πŸ”— COURSE LINK


#python #programming #OOP
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
πŸ‘‰Join @python_bds for moreπŸ‘ˆ
Using tuples as keys in dictionaries
Since tuples are hashable, and list is not, we must use tuple as the key if we need to create a composite key to use in a dictionary.

Example: We would come across a composite key if we need to create a telephone directory that maps, first-name, last-name, pairs of telephone numbers, etc. Assuming that we have declared the variables as last and first number, we could write a dictionary assignment statement as shown below:

directory[last,first] = number

Inside the brackets, the expression is a tuple. We could use tuple assignment in a for loop to navigate this dictionary.

for last, first in directory:
print first, last, directory[last, first]

This loop navigates the keys in the directory, which are tuples. It assigns the elements of each tuple to last and first and then prints the name and corresponding telephone number.

Tuples and dictionary

Dictionary can return the list of tuples by calling items, where each tuple is a key value pair.

a = {'x':100, 'y':200}
b = list(a.items())
print(b)


πŸ”— Read Online

#Python #python_3
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
πŸ‘4❀2
Learn R and Python Programming for Data Visualization

From Raw Data to Insightful Narratives: Creating Visual Charts

⏰ Free Online Course
🎬 video lessons
Rating ⭐️: 4.6 out 5
Students πŸ‘¨β€πŸŽ“ : 2,300
Duration ⏰ : 1hr 56min of on-demand video
Created by πŸ‘¨β€πŸ«: Pranjal Srivastava, Harshit Srivastava

πŸ”— COURSE LINK


#python #programming #R
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
πŸ‘‰Join @python_bds for moreπŸ‘ˆ
❀3πŸ‘2
Deleting Tuples

Tuples are immutable and cannot be deleted. You cannot delete or remove items from a tuple. But deleting tuple entirely is possible by using the keyword

del

Slicing of Tuple

To fetch specific sets of sub-elements from tuple or list, we use this unique function called slicing. Slicing is not only applicable to tuple but also for array and list.

x = ("a", "b","c", "d", "e")
print(x[2:4])


The output of this code will be (β€˜c’, β€˜d’).

πŸ”— Read Online

#Python #python_3
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
Forwarded from Free programming books
Please open Telegram to view this post
VIEW IN TELEGRAM
phidata

Build AI Assistants using function calling

Creator: Abhishek Veeramalla
Stars: ⭐️ 830
Forked by: 94
https://github.com/phidatahq/phidata

#python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @github_repositories_bds for more cool repositories.
*This channel belongs to @bigdataspecialist group
❀2
The Art of Doing: Master the Basics of Python GUIs!

Learn the fundamentals of the Tkinter library and starting making Python GUI apps today!

⏰ Free Online Course
🎬 video lessons
Rating ⭐️: 4.9 out 5
Students πŸ‘¨β€πŸŽ“ : 16650
Duration ⏰ : 1hr 56min of on-demand video
Created by πŸ‘¨β€πŸ«: Michael Eramo

πŸ”— COURSE LINK


#python #programming
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
πŸ‘‰Join @python_bds for moreπŸ‘ˆ
πŸ‘4❀2
Python For Beginners Course In-Depth

Python: A Comprehensive Introduction to Fundamental Python Concepts and the Python Advanced Programming Concepts

Rating ⭐️: 4.2 out 5
Students πŸ‘¨β€πŸŽ“ : 226,748
Duration ⏰ : 7 hours on-demand video
Created by πŸ‘¨β€πŸ«: Horizon Academy

πŸ”— Course Link

⚠️ Its free for first 1000 enrollments only!


#python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
πŸ‘‰Join @bigdataspecialist for moreπŸ‘ˆ
πŸ‘6πŸ‘Ž1😁1
Python for Data Visualization: The Complete Masterclass

Transforming Data into Insights: A Comprehensive Guide to Python-based Data Visualization

Rating ⭐️: 4.6 out 5
Students πŸ‘¨β€πŸŽ“ : 29,613
Duration ⏰ : 3.5 hours on-demand video
Created by πŸ‘¨β€πŸ«: Meta Brains

πŸ”— Course Link

⚠️ Its free for first 1000 enrollments only!


#python #data_visualization
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
πŸ‘‰Join @bigdataspecialist for moreπŸ‘ˆ
πŸ‘7
Learn Python Language Fundamentals In Simple Way

To Know Basics of Python and To Enter Python World Very Easily

⏰ Free Online Course
🎬 video lessons
Rating ⭐️: 4.5 out 5
Students πŸ‘¨β€πŸŽ“ : 66,678
Duration ⏰ : 10hr 57min of on-demand video
Created by πŸ‘¨β€πŸ«: DURGASOFT DURGA

πŸ”— COURSE LINK


#python #programming
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
πŸ‘‰Join @python_bds for moreπŸ‘ˆ
❀3πŸ”₯2πŸ‘1
azure-sdk-for-python

This repository is for active development of the Azure SDK for Python.

Creator: Microsoft Azure
Stars ⭐️: 4.3k
Forked By: 2.7k
https://github.com/Azure/azure-sdk-for-python

#python #azure
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
Python Complete Course For Beginners

This Python Course is a Depth Introduction to Fundamental Python Programming Concepts and Python Programming Language.

Rating ⭐️: 4.3 out 5
Students πŸ‘¨β€πŸŽ“ : 230,667
Duration ⏰ : 5.5 hours on-demand video
Created by πŸ‘¨β€πŸ«: Horizon Tech

πŸ”— Course Link

⚠️ Its free for first 1000 enrollments only!


#python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
πŸ‘‰Join @python_bds for moreπŸ‘ˆ
πŸ‘4
Forwarded from Free programming books
Please open Telegram to view this post
VIEW IN TELEGRAM
30-Days-Of-Python

30 days of Python programming challenge is a step-by-step guide to learn the Python programming language in 30 days. This challenge may take more than100 days, follow your own pace.

Creator: Asabeneh
Stars ⭐️: 33.2k
Forked By: 6.7k
https://github.com/Asabeneh/30-Days-Of-Python

#python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
πŸ‘5
30-Days-Of-Python

30 days of Python programming challenge is a step-by-step guide to learn the Python programming language in 30 days. This challenge may take more than100 days, follow your own pace.

Creator: Asabeneh
Stars ⭐️: 33.2k
Forked By: 6.7k
https://github.com/Azure/azure-sdk-for-python

#python #azure
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
πŸ‘8
Learn Programming in Python! - Data Visualization in Python

Learn to visualize data using Pyplot and master the Python Programming Language!

Rating ⭐️: 4.1 out 5
Students πŸ‘¨β€πŸŽ“ : 9,293
Duration ⏰ : 38min of on-demand video
Created by πŸ‘¨β€πŸ«: Nirmali Khound Baruah

πŸ”— Course Link


#python #data_visualization
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
πŸ‘‰Join @python_bds for moreπŸ‘ˆ
πŸ‘3
Build local LLM applications using Python and Ollama

Learn to create LLM applications in your system using Ollama and LangChain in Python | Completely private and secure

Rating ⭐️: 4.7 out 5
Students πŸ‘¨β€πŸŽ“ : 2,534
Duration ⏰ : 2 hours on-demand video
πŸ‘©β€πŸ’» 2 articles
2 downloadable resources
Created by πŸ‘¨β€πŸ«: Star Tech

πŸ”— COURSE LINK

⚠️ Its free for first 1000 enrollments only!


#LLM #python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
πŸ‘‰Join @bigdataspecialist for moreπŸ‘ˆ
❀3
Python: From Zero to Hero - Code Your Way to the Top


Rating ⭐️: 4.4 out 5
Students πŸ‘¨β€πŸŽ“ : 233,718
Duration ⏰ : 4.5 hours on-demand video
πŸ‘©β€πŸ’» 1 article
9 downloadable resources
Created by πŸ‘¨β€πŸ«: Ahmed El Mohandes

πŸ”— COURSE LINK

⚠️ Its free for first 1000 enrollments only!


#python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
πŸ‘‰Join @bigdataspecialist for moreπŸ‘ˆ
❀2
Selenium Base

Python APIs for web automation, testing, and bypassing bot-detection.

Creator: Selenium ase
Stars ⭐️: 6.5k
Forked By: 1k
GithubRepo: https://github.com/seleniumbase/SeleniumBase


#API #python
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more cool repositories.
*This channel belongs to @bigdataspecialist group
❀3πŸ‘2