Python Learning
5.92K subscribers
436 photos
1 video
61 files
108 links
Python Coding resources, Cheat Sheets & Quizzes! 🧑‍💻

Free courses: @bigdataspecialist

@datascience_bds
@github_repositories_bds
@coding_interview_preparation
@tech_news_bds

DMCA: @disclosure_bds

Contact: @mldatascientist
Download Telegram
Bar Graph in Python
👍11
The value of the expressions 4/(3*(2-1)) and 4/3*(2-1) is the same in python.
Anonymous Quiz
53%
True
47%
False
5🤯2
Statistics module in python
👍8
What will be the value of the following Python expression?

4 + 3 % 5
Anonymous Quiz
22%
4
35%
7
31%
2
11%
0
👍7
Machine Learning Engineer Roadmap
👍5🔥2
Evaluate the Python expression given below if A = 16 and B = 15.

A % B // A
Anonymous Quiz
15%
0.0
31%
0
29%
1.0
25%
1
Which of the following operators has its associativity from right to left?
Anonymous Quiz
19%
+
26%
//
23%
%
33%
**
🥰2👏1
Learning Python book
by Mark Lutz

📄 1213 pages

🔗 Book link

#Python #Learning_python

Join @python_bds for more
👎2
What will be the value of x in the following Python expression?

x = int(43.55+2/2)
Anonymous Quiz
16%
43
67%
44
10%
22
8%
23
🥰7👍4
What is the value of the following expression?

2+4.00, 2**4.0
Anonymous Quiz
23%
(6.0, 16.0)
33%
(6.00, 16.00)
10%
(6, 16)
33%
(6.00, 16.0)
🔥52👍1
Which of the following is the truncation division operator?
Anonymous Quiz
22%
/
12%
%
59%
//
7%
|
👍3
👍5🔥3
What is the value of the following expression?

8/4/2, 8/(4/2)
Anonymous Quiz
59%
(1.0, 4.0)
7%
(1.0, 1.0)
12%
(4.0. 1.0)
22%
(4.0, 4.0)