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
What will be the output of the following Python code?
Anonymous Quiz
32%
a a a a a a
20%
a
32%
No output
15%
Error
Comparing tuples

A comparison operator in Python can work with tuples.
The comparison starts with a first element of each tuple. If they do not compare to =,< or > then it proceed to the second element and so on.
It starts with comparing the first element from each of the tuples
Let’s study this with an example-

#case 1
a=(5,6)
b=(1,4)
if (a>b):print("a is bigger")
else: print("b is bigger")

#case 2
a=(5,6)
b=(5,4)
if (a>b):print("a is bigger")
else: print ("b is bigger")

#case 3
a=(5,6)
b=(6,4)
if (a>b):print("a is bigger")
else: print("b is bigger")

Case1
: Comparison starts with a first element of each tuple. In this case 5>1, so the output a is bigger

Case 2: Comparison starts with a first element of each tuple. In this case 5>5 which is inconclusive. So it proceeds to the next element. 6>4, so the output a is bigger

Case 3: Comparison starts with a first element of each tuple. In this case 5>6 which is false. So it goes into the else block and prints β€œb is bigger.”


πŸ”— Read Online

#Python #python_3
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
πŸ‘4
What will be the output of the following Python code?
Anonymous Quiz
15%
a B C D
23%
a b c d
43%
A B C D
19%
error
πŸ‘8
Python librarian and frameworks
❀6πŸ‘1
What will be the output of the following Python code?
Anonymous Quiz
13%
a b c d
72%
A B C D
3%
a B C D
13%
error
Python Roadmap for Data Science in 2024
πŸ‘2
What will be the output of the following Python code?
Anonymous Quiz
44%
a b c d
23%
0 1 2 3
27%
error
6%
none
❀4
Python OOP : Object Oriented Programming in Python

Python Object Oriented programming OOP advanced / Scripting for projects / automation / interview questions / beginners

⏰ Free Online Course
🎬 video lessons
Rating ⭐️: 4.6 out 5
Students πŸ‘¨β€πŸŽ“ : 2,418
Duration ⏰ : 2hr 10min of on-demand video
Created by πŸ‘¨β€πŸ«: Deepali Srivastava

πŸ”— COURSE LINK


#python #programming #OOP
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
πŸ‘‰Join @python_bds for moreπŸ‘ˆ
What will be the output of the following Python code?
Anonymous Quiz
25%
a b c d
35%
0 1 2 3
30%
error
10%
1 2 3 4
❀2
Using tuples as keys in dictionaries
Since tuples are hashable, and list is not, we must use tuple as the key if we need to create a composite key to use in a dictionary.

Example: We would come across a composite key if we need to create a telephone directory that maps, first-name, last-name, pairs of telephone numbers, etc. Assuming that we have declared the variables as last and first number, we could write a dictionary assignment statement as shown below:

directory[last,first] = number

Inside the brackets, the expression is a tuple. We could use tuple assignment in a for loop to navigate this dictionary.

for last, first in directory:
print first, last, directory[last, first]

This loop navigates the keys in the directory, which are tuples. It assigns the elements of each tuple to last and first and then prints the name and corresponding telephone number.

Tuples and dictionary

Dictionary can return the list of tuples by calling items, where each tuple is a key value pair.

a = {'x':100, 'y':200}
b = list(a.items())
print(b)


πŸ”— Read Online

#Python #python_3
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
Join @python_bds for more cool data science materials.
*This channel belongs to @bigdataspecialist group
πŸ‘4❀2
What will be the output of the following Python code?
Anonymous Quiz
11%
a b c d
25%
0 1 2 3
57%
error
8%
1 2 3 4
❀2
Python Libraries every Data Scientist should know
❀2πŸ‘2
What will be the output of the following Python code snippet?
Anonymous Quiz
29%
a b c d
19%
0 1 2 3
44%
error
7%
none
❀2
Learn R and Python Programming for Data Visualization

From Raw Data to Insightful Narratives: Creating Visual Charts

⏰ Free Online Course
🎬 video lessons
Rating ⭐️: 4.6 out 5
Students πŸ‘¨β€πŸŽ“ : 2,300
Duration ⏰ : 1hr 56min of on-demand video
Created by πŸ‘¨β€πŸ«: Pranjal Srivastava, Harshit Srivastava

πŸ”— COURSE LINK


#python #programming #R
βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–βž–
πŸ‘‰Join @python_bds for moreπŸ‘ˆ
❀3πŸ‘2