ch
Feedback
Python Resources - Basic Python, ML, DataScience, BigData

Python Resources - Basic Python, ML, DataScience, BigData

前往频道在 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

显示更多
未指定国家技术与应用28 376
3 068
订阅者
无数据24 小时
无数据7
无数据30
帖子存档
y, z = 10, 15 y *= y + z # What is the value of y. Explain How?
Anonymous voting

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

Which of the following operators has the lowest precedence?
Anonymous voting

Is this a valid code. If you say no, then explain?
Is this a valid code. If you say no, then explain?

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

"=".join(['1', '2', '4', '8', '16']) #what is the output. Explain Why?
Anonymous voting

x, y, z = 5, 10, 15 z = x <= y #What is the value of z? Explain why your answer is correct!!!
Anonymous voting

Practice Code: 001 Each level increases the complexity. Each level should satisfy the previous level 🔥How many levels can yo
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

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

Which of the following functions will return an iterable object?
Anonymous voting

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

x = 1.3 + 2.3 print(x == 3.6) # what is the output? Can you explain?
Anonymous voting

* 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

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

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

Did You Know - Python Tips # Very simple string reverse trick in Python x = 'Python' print(x[::-1]) » nohtyP #python #tips #HowTo

print("""A B C """=="A\nB\nC\n") #What is the output
Anonymous voting

* 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.

. 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

https://t.me/python_interview_questions/23 #answer to the above question is ————-»»» (2,3)