Forwarded from Python Questions via @like
Welcome to Python Questions!
This channel caters to beginners, experienced python developers and those who just want to try somthing new.
It will contain simple objective questions to complex problems to solve using Python programming language.
It will also contain common interview questions.
Regular expressions, Algorithms, Quiz will also be posted.
For bigger problems, we will be posting the solutions on our github repository: https://github.com/ignani/LearnPython
This channel caters to beginners, experienced python developers and those who just want to try somthing new.
It will contain simple objective questions to complex problems to solve using Python programming language.
It will also contain common interview questions.
Regular expressions, Algorithms, Quiz will also be posted.
For bigger problems, we will be posting the solutions on our github repository: https://github.com/ignani/LearnPython
Telegram
Python Questions
Tasks for Beginners, Interview Questions, Regular expressions, simple coding problems, Quiz etc.
Useful Resources — »»» @python_resources_iGnani
Projects for Practice — »»» @python_projects_repository
Discussion Forum — »»» @python_programmers_club
Useful Resources — »»» @python_resources_iGnani
Projects for Practice — »»» @python_projects_repository
Discussion Forum — »»» @python_programmers_club
Forwarded from Python Projects
.
CLICK HERE ——-»»» A Fast, Extensible Progress Bar for Python and CLI
Instantly make your loops show a smart progress meter - just wrap any iterable with tqdm(iterable), and you're done!
#python #controls #progressBar #sourceCode #sampleCode
CLICK HERE ——-»»» A Fast, Extensible Progress Bar for Python and CLI
Instantly make your loops show a smart progress meter - just wrap any iterable with tqdm(iterable), and you're done!
#python #controls #progressBar #sourceCode #sampleCode
YouTube
A demo of tqdm - Casper da Costa-Luis
PyData London Meetup #56
Tuesday, May 7, 2019
Sponsored & Hosted by Man AHL
tqdm - A Fast, Extensible Progress Bar for Python and CLI https://tqdm.github.io
****
www.pydata.org
PyData is an educational program of NumFOCUS, a 501(c)3 non-profit organization…
Tuesday, May 7, 2019
Sponsored & Hosted by Man AHL
tqdm - A Fast, Extensible Progress Bar for Python and CLI https://tqdm.github.io
****
www.pydata.org
PyData is an educational program of NumFOCUS, a 501(c)3 non-profit organization…
Forwarded from Python Questions
What is the output of this statement?
16//3+16//-3
16//3+16//-3
Anonymous Poll
9%
1
42%
0
19%
-1
5%
True
25%
Error - Invalid Statement
Forwarded from Python Questions
y, z = 10, 15; b = c = 0
b = y - y + z; y -= (y + z)
What is the value of b & y respectively? Please Explain?
b = y - y + z; y -= (y + z)
What is the value of b & y respectively? Please Explain?
Anonymous Poll
20%
15 15
41%
15 -15
10%
-15 15
7%
-15 -15
22%
Error
Forwarded from Python Questions via @like
.
Python Challenge 004.2 ————-»»» Basic Syntax in Python
Python Test 004.2 - Basic Syntax : CLICK HERE
17 simple but tricky questions, all related to the video in this link.
Questions realted to the topics covered in the Introduction Chapter.
#python #tutorial #test #assessment #quiz
Python Challenge 004.2 ————-»»» Basic Syntax in Python
Python Test 004.2 - Basic Syntax : CLICK HERE
17 simple but tricky questions, all related to the video in this link.
Questions realted to the topics covered in the Introduction Chapter.
#python #tutorial #test #assessment #quiz
Google Docs
004 - Test 2 : Python Basic Syntax
Questions asked will only be from the contents covered in the video given below.
Suggest you to watch the video, which will make it easy to take the test.
But you can still proceed to quiz. Good Luck!!!
Suggest you to watch the video, which will make it easy to take the test.
But you can still proceed to quiz. Good Luck!!!
Forwarded from Python Questions
*
https://t.me/python_interview_questions/12
#answer to the question 👆is ————-»»» Dict
To clarify, both Set and Dict perform search quite fast due to both Set & Dict being implemented using hashtables.
However, Dict performs marginally better compared to Set, but when compared to List or tuple, the difference is huge.
https://t.me/python_interview_questions/12
#answer to the question 👆is ————-»»» Dict
To clarify, both Set and Dict perform search quite fast due to both Set & Dict being implemented using hashtables.
However, Dict performs marginally better compared to Set, but when compared to List or tuple, the difference is huge.
Telegram
Python Questions
Which is faster in performance while searching around a million records plus?
List / Set / Dict / Tuple / All of the above
List / Set / Dict / Tuple / All of the above
Forwarded from Python Questions
Anonymous Poll
26%
True
23%
False
20%
Error
10%
ABC
21%
Invalid Statement
Forwarded from Python Projects
Forwarded from Python Projects
Forwarded from Python Projects
Forwarded from Python Projects
*
Building Tic-Tac-Toe with Pygame Tutorial
Pygame is a useful python module that allows you to build graphical interfaces. It is great for python beginners to use and can lead to many interesting projects.
#python #sourceCode #sampleCode #pygame #project #game
Building Tic-Tac-Toe with Pygame Tutorial
Pygame is a useful python module that allows you to build graphical interfaces. It is great for python beginners to use and can lead to many interesting projects.
#python #sourceCode #sampleCode #pygame #project #game
Forwarded from Python Questions
x = 1.3 + 2.3
print(x == 3.6) # what is the output? Can you explain?
print(x == 3.6) # what is the output? Can you explain?
Anonymous Poll
16%
3.6
1%
1.3
2%
2.3
67%
True
14%
False
Forwarded from Python Projects
Drawing Kaleidoscope Pictures with Pygame
A very simple project to make a Kaleidoscope image using Python.
Good for practice program.
#python #sourceCode #sampleCode #pygame #random
A very simple project to make a Kaleidoscope image using Python.
Good for practice program.
#python #sourceCode #sampleCode #pygame #random
Forwarded from Python Questions
Which of the following functions will return an iterable object?
Anonymous Poll
11%
len()
5%
ord()
11%
xrange()
59%
range()
14%
none of the above
Forwarded from Python Projects
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
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
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