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
*

007 - Input and Output - Learn Python : Full Course For Beginner
Will be starting at 5 PM today, and Q&A session follows it.
Will provide the link to Q&A session after completing the video.

This video is all about Input and Output in Python. It covers both input() and print() functions in detail like its never covered before in other videos.
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
Forwarded from Python Questions
What is the output of this statement?

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?
Anonymous Poll
20%
15 15
41%
15 -15
10%
-15 15
7%
-15 -15
22%
Error
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.
Forwarded from Python Questions
print("""A
B
C """=="A\nB\nC\n") #What is the output
Anonymous Poll
26%
True
23%
False
20%
Error
10%
ABC
21%
Invalid Statement
Forwarded from Python Projects
Did You Know - Python Tips

# Very simple string reverse trick in Python
x = 'Python'
print(x[::-1])

» nohtyP

#python #tips #HowTo
Forwarded from Python Projects
Did You Know - Python Tips : 002

# In-Place Swapping Of Two Variables, works with any datatype

x, y = 'hello', 'world'
print(x, y)
x, y = y, x
print(x, y)

#python #tips #HowTo
Forwarded from Python Projects
Did You Know - Python Tips : 003

# Using all the elements in a list, create a single string

mylist = ["Hello!", "Welcome", " to", "iGnani"]
print(" ".join(mylist))

#python #tips #HowTo
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
Forwarded from Python Questions
x = 1.3 + 2.3
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
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
Practice Code : 001

Accept a number from the user, and return the value in reverse order.
* Input: 123456 --- Output: 654321
* Input: -987654 --- output: -456789

#python #practice #code #interviewQuestions #strings #numbers