Python Resources - Basic Python, ML, DataScience, BigData
2.46K subscribers
14 photos
3 files
243 links
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
Download Telegram
Forwarded from Python Projects
Practice Code: 001

Each level increases the complexity. Each level should satisfy the previous level

🔥How many levels can you achieve? 🔥

#python #practiceCode #samples #interviewQuestions #strings #numbers #validation
Forwarded from Python Questions
x, y, z = 5, 10, 15
z = x <= y #What is the value of z?
Explain why your answer is correct!!!
Anonymous Poll
8%
5
13%
15
42%
True
17%
False
20%
Error in statement
Forwarded from Python Questions
"=".join(['1', '2', '4', '8', '16']) #what is the output. Explain Why?
Anonymous Poll
18%
1, 2, 4, 8, 16
3%
1, 2, 4, 8, 16, 32
47%
1=2=4=8=16
10%
1=2=4=8=16=32
21%
Syntax Error
Forwarded from Python Projects
Practice Code: 002

Accept a number from the user and return the sum of all natural numbers that are multiples of 5,7 less than the number entered by the user. Example --- Input: 15 --- 5, 7, 10, 14 and return 36

🔥Can you solve this? 🔥
#python #practiceCode #samples #interviewQuestions #numbers
Forwarded from Python Questions
Is this a valid code. If you say no, then explain?
Forwarded from Python Questions
Which of the following operators has the lowest precedence?
Anonymous Poll
27%
not
11%
and
7%
**
39%
+
16%
%
Forwarded from Python Projects
pyIDM - Download Manager in Python

python open source alternative to IDM (Internet Download Manager) with multi-connections, high speed engine, based on python, pycurl, youtube_dl, and pysimplegui.

For those looking for some complex projects to get your hands dirty, try this one. Source code is available for reference, build it and if you find interesting, join the repo.
#python #sourceCode #sampleCode #project #pycurl #youtube_dl #pysimplegui
Forwarded from Python Questions
y, z = 10, 15
y *= y + z # What is the value of y. Explain How?
Anonymous Poll
3%
10
8%
25
23%
115
51%
250
15%
Syntax error
Forwarded from Python Questions
*

myList = [1, 2, 3, 4, 2, 2, 3, 1, 4, 4, 4,5,5,6,7,6,5]

A) Write a program to get the value that appears more number of times
B) When there is a tie, then get the number which is the smallest of them

#python #practiceCode #samples #interviewQuestions #numbers #list
Forwarded from Python Questions
# Sequence Puzzle
[30, 9, 40, 50, 91, 142, 234, ?] Find the next value?
Anonymous Poll
17%
276
16%
277
22%
334
17%
376
28%
377
Forwarded from Python Projects
Typing Speed Test – Build your first game in Python

In this Python project idea, we are going to build an exciting project through which you can check and even improve your typing speed. For a graphical user interface, we are going to use the pygame library which is used for working with graphics. We will draw the images and text to be displayed on the screen.
#python #sourceCode #sampleCode #project #pygame
Forwarded from Python Questions
*

name = 'ppy!'
Write code to insert the letter 'a' in-between each letter to form the word 'papaya!'

#python #practiceCode #samples #interviewQuestions #strings #list
Forwarded from Python Questions
.

a = 1
b = 2
Swap the values without using an additional variable.

#python #practiceCode #samples #interviewQuestions
Forwarded from Python Questions
min("abCD123!")
What is the output and WHY?
Anonymous Poll
19%
a
4%
C
20%
1
26%
!
32%
abCD123!
Forwarded from Python Questions
x = [3,1,2]
What is the output of x [1:]?
Anonymous Poll
9%
3,1,2
8%
3,1
76%
1,2
8%
None of the above
Forwarded from Python Projects
Practice Code: 003

In an array, that has been sorted in ascending order, but has been cyclically shifted, find the element that has the minimum element.
Example, [5, 6, 7, 8, 9, 10, 11, 1, 2, 3, 4]
Write an algorithm that optimally finds the minimum element in such an array.

««« Click here for solution »»»

🔥Ready to take this challenge? 🔥

#python #practiceCode #samples #interviewQuestions #numbers #algorithm
Forwarded from Python Projects
Practice Code: 0004

Check if a palindrome can be created from a string entered by the user.
A palindrome is a word, number, phrase, or other sequence of characters which reads the same backward as forward, such as madam, racecar, or the number 10801.

"madam" => true - is already a palindrome
"mamad" => true - can be made a palindrome
"sir" => false - cannot be made a palindrome

««« Click here for the Solution »»»

🔥Ready to take this challenge? 🔥

#python #practiceCode #samples #interviewQuestions #numbers #algorithm
Forwarded from Python Projects
#PracticeCode: 0005

Permutation: In mathematics, permutation is the act of arranging the members of a set into a sequence or order, or, if the set is already ordered, rearranging its elements—a process called permuting. Permutations differ from combinations, which are selections of some members of a set regardless of order.

Task:
Write a function, which determines whether one line is a permutation of another. Write an algorithm that optimally finishes the task.

««« Click here for the Solution »»»

🔥Ready to take this challenge? 🔥

#python #practiceCode #samples #interviewQuestions #collections #dict #algorithm
Forwarded from Python Projects
Hello all,

The Practice problems are posted to improve your problem solving skill. While a lot of problems already have inbuilt functions in Python, if the task is about coming up with an algorithm, then its better you stay away from using the inbuilt functions.

You can submit your solutions to the tasks in our group @python_programmers_club
Post only the code and don't post a screen shot of your solution. If the approach is not already submitted, then we will update the github page with your solution.

There can be a lot of different approaches, the variety of solutions will only allow us to look from a different perspective.
And finally, let's have a good debate on these approaches.