Python Resources - Basic Python, ML, DataScience, BigData
Ir al canal en Telegram
You can find all kinds of resources related to Python, ML, DataScience and BigData. Resources — »»» @python_resources_iGnani Projects — »»» @python_projects_repository Questions— »»» @python_interview_questions Forum — »»» @python_programmers_club
Mostrar másEl país no está especificadoTecnologías y Aplicaciones28 376
3 068
Suscriptores
Sin datos24 horas
Sin datos7 días
Sin datos30 días
Archivo de publicaciones
Which is the correct way to create an empty set in Python?
https://analyticsindiamag.com/facebook-releases-open-source-library-for-3d-deep-learning-pytorch3d/
#pytorch #python #deeplearning #facedetection #article #opensource
#DataWrangling : Task: 0001
🎯 »»»» FORWARD IF YOU LIKE IT «««« 🎯
Task:
Load the dataset using Pandas.
Optional Tasks:
»» Import only "Product Name, Quantity & Categories" columns
»» Load only 100 rows into the dataframe
📝 ———»»» Click here for the dataset ««« ———
««« Discuss your solution @python_programmers_club and proper solutions will be added to our Github page »»»
🔥Ready to take this challenge? 🔥
««« Click here for the Solution »»»
#python #practiceCode #samples #DataWrangling #pandas
Guys, those who are interested in learning ———»»» Data Wrangling «««———
using:
Pandas/Numpy/regex,
download the above data set.
Contains a set of 2000 products, quantity, category and other details.
Will post some practice tasks, which will be based on this dataset.
#python #dataset #DataWrangling
#PracticeCode: 0023
🎯 FORWARD IF YOU LIKE IT 🎯
Task:
You have to create a program in which a list is given as input and you have to print the sum of 1st , last and mid element of the
list.
If the list count is even, then select the 1st, last and average of 2 elements from the middle have to be considered.
sample :-
input - [1,2,3,4,5]
output - 9
NOTE :- Without Loop.
GOOD LUCK!
««« Discuss your solution @python_programmers_club and proper solutions will be added to our Github page »»»
««« Click here for the Solution »»»
🔥Ready to take this challenge? 🔥
#python #practiceCode #samples #interviewQuestions #collections #dict #algorithm
def foo(x = 10, y = 15):
return(x + y, x - y)
x, y = foo(y = 20, x = 15) print(x, y) #What is the output of the following code?
✅ Answer ✅
TypeError − ‘tuple’ object does not support item assignment because a tuple is immutable.
.
A Complete Pandas Glossary for Data Science
Your go-to resource to learn Pandas fundamentals
#python #pandas #DataScience #machineLearning #tutorial
How can we check whether the object is instance of class or not.
For example, how to check if an object O which is instance of class C.
https://medium.com/fse-ai/pytorch-909e81f54ee1
#python #pytorch #NeuralNetworks #tutorial
https://towardsdatascience.com/introducing-my-book-python-for-finance-cookbook-de219ca0d612
#python #Finance #tutorial #eBook
In Python, functions can also have attributes and methods.
#PracticeCode: 0022
🎯 FORWARD IF YOU LIKE IT 🎯
Task:
Create a program in which a list is given as input and you have to find max number
and change each element of list into max element.
input - [1,2,3,4,5]
output - [5,5,5,5,5]
NOTE :- Without Loop.
GOOD LUCK!
««« Send your solution to @hbabureddy and will be added to our Github page »»»
««« Click here for the Solution »»»
🔥Ready to take this challenge? 🔥
#python #practiceCode #samples #interviewQuestions #collections #dict #algorithm
#PracticeCode: 0021
🎯 FORWARD IF YOU LIKE IT 🎯
Task:
You have to create a program in which a list of numbers are given and you to print
the list shifted left by one step.
Sample:
input - [1,2,3,4]
output - [2,3,4,1]
NOTE :- Without loop!
GOOD LUCK!
««« Send your solution to @hbabureddy and will be added to our Github page »»»
««« Click here for the Solution »»»
🔥Ready to take this challenge? 🔥
#python #practiceCode #samples #interviewQuestions #collections #dict #algorithm
Which operator is right-associative among these?
