Top 100 Python Interview Questions | Python Programming | Crack Python Interview |Great Learning

Top 100 Python Interview Questions | Python Programming | Crack Python Interview |Great Learning

Great Learning

2 года назад

337,443 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@faizaanalibaig6241
@faizaanalibaig6241 - 08.12.2023 22:05

Thank you so much for the valueable information and boosting our skills

Ответить
@shashankbharatrajan4211
@shashankbharatrajan4211 - 01.12.2023 22:57

Easiest way or logic for the 2nd largest number in a list, please check -->
list1 = [2,7,3,5,9,11,6]
list1.sort()
list1.pop(-1)
print(list1[-1])

Ответить
@ayushbansal5633
@ayushbansal5633 - 28.10.2023 10:15

Remove duplicate elements from the list
x=[1,2,3,45,67,1,2,3,4,5,6,2,3,4,5,67]
z=[ ]
for i in x:
if i not in z:
z.append(i)
print(

Ответить
@user-yg1te9xq7t
@user-yg1te9xq7t - 11.08.2023 17:53

can we get pdf for this seession

Ответить
@jaswanthkumar4450
@jaswanthkumar4450 - 11.08.2023 14:19

Armstrong Definition is wrong! We can only cube each digit if the given number has only 3 digits. For other number we need to use power of total number of digits.

This is the definition:
An Armstrong number is a number that is equal to the sum of its own digits each raised to the power of the number of digits.


so if your number is 3452 then we should check if (3**4)+(4**4)+(5**4)+(2**4)==3452. if yes, it is Armstrong otherwise not.

similarly for number 10 we should check like this (1**2)+(0**2)==10. this not armstrong since 1 not equal to 10.

Ответить
@adityarethe
@adityarethe - 06.08.2023 15:12

fantastic is irritating

Ответить
@gurukanalytics
@gurukanalytics - 24.07.2023 11:56

8. Advanced Users - Lambda function to add numbers in a list: ans = lambda x:sum(x)

Ответить
@user-ci7bs5di3c
@user-ci7bs5di3c - 14.07.2023 13:39

in the 2nd answer first line that keywords are reserved words which are used as identifiers and function names and more, i cannot understand that. The keyword cannot be used as an identifier, function, or variable name.

Ответить
@ishitagupta2842
@ishitagupta2842 - 12.07.2023 01:30

its more towards data science and ml

Ответить
@DiegoSalazar-uf1js
@DiegoSalazar-uf1js - 27.06.2023 08:18

where is the notebook?

Ответить
@ninadabhyankar7232
@ninadabhyankar7232 - 15.06.2023 18:34

Thank you :)

Ответить
@kobehaim5986
@kobehaim5986 - 07.06.2023 19:05

Hey,
I liked the video and especially that you talked about Liverpool!

Ответить
@akshatmishra5115
@akshatmishra5115 - 02.06.2023 16:05

Completed this in one sitting
Thank you sir

Ответить
@maheshchaugule8940
@maheshchaugule8940 - 22.05.2023 17:10

Thank you :)

Ответить
@srinivassiddarth
@srinivassiddarth - 10.04.2023 00:52

Fantastic video. Thanks.🙏🙏🙏🙏🙏🙏

Ответить
@JMunnafromdaHustler
@JMunnafromdaHustler - 24.01.2023 15:09

Thank u sir!

Ответить
@abhinavkale4632
@abhinavkale4632 - 19.01.2023 18:28

for question 55.
import pandas as pd

# Create a sample DataFrame
df = pd.DataFrame({'col1': ['A', 'B', 'C', 'A', 'D'], 'col2': [1, 2, 3, 4, 5], 'col3':['A','A','B','C','D']})

# Create an empty list to store the index of the rows to drop
to_drop = []

# Iterate through the rows of the DataFrame
for index, row in df.iterrows():
# Check if the value 'A' is present in any of the columns of the row
if 'A' in row.values:
# If it is, append the index to the list of rows to drop
to_drop.append(index)
print(df)
# Drop the rows using the list of indexes
df = df.drop(to_drop)

print(df)

Ответить
@guruvenipilli87guruvenipil4
@guruvenipilli87guruvenipil4 - 10.01.2023 15:54

Bro can u send these questions in pdf

Ответить
@hazemmelliti6183
@hazemmelliti6183 - 03.01.2023 23:01

Thank you ! can u share the video slides ?

Ответить
@rishichowdary9764
@rishichowdary9764 - 18.12.2022 08:00

"fantastic guys" is the only Word I'm mostly listening while viewing the whole lecture.😂😂😂

Ответить
@vinaybhargav3373
@vinaybhargav3373 - 03.12.2022 09:05

Bro can you please share the ppt which you have used to explain..,?

Ответить
@ratishkumar563
@ratishkumar563 - 24.11.2022 15:47

How many time you say Fantastic.

Ответить
@jiyanshsonofdr.rajesh8516
@jiyanshsonofdr.rajesh8516 - 23.11.2022 10:02

Really thanks.

Ответить
@Rana-yc6yt
@Rana-yc6yt - 22.11.2022 08:08

Where is the notebook??

Ответить
@ashishmishra-um5zd
@ashishmishra-um5zd - 21.11.2022 19:11

buddy can I get a pdf for this really helpful

Ответить
@MDALAM-we7ty
@MDALAM-we7ty - 20.11.2022 18:35

Thanks

Ответить
@DivyaSharma-ux4mo
@DivyaSharma-ux4mo - 15.11.2022 07:25

I was watching this interview before an interview, I found your way of talking very irritating and a waste of time extending the video time.

Ответить
@hardcoreedge8134
@hardcoreedge8134 - 10.11.2022 09:46

Honestly, this video is a complete waste of time.

Ответить
@PankajKumar-ut8hh
@PankajKumar-ut8hh - 09.10.2022 14:45

Question 5 of experienced users section, df.dropna() is not required. That is doing nothing for given dataset, and you are highlighting that part only.

Ответить
@manpt123
@manpt123 - 14.09.2022 00:42

The title of this video should be " Python pandas questions for data science interview" not for developers. waster of time!

Ответить
@veereshkurubara8652
@veereshkurubara8652 - 03.09.2022 13:32

Thank you very much it was very helpful for me

Ответить
@amazonshoppingstore8888
@amazonshoppingstore8888 - 31.08.2022 13:54

Plzz yrrr Hindi mai bnaya kro

Ответить
@hamidthedev5383
@hamidthedev5383 - 30.08.2022 07:29

❤❤l💗💗

Ответить
@jaydeeppatidar4189
@jaydeeppatidar4189 - 23.08.2022 20:23

Great video and actually like Interview.

Ответить
@praiseb2980
@praiseb2980 - 23.08.2022 15:04

Legendary

Ответить
@arpithav5812
@arpithav5812 - 17.08.2022 08:55

Hats off to you for making such a great video with practicals. I understood more than i had learnt because of practicals. I dont know how to tahank you. Hoping to attend interview next month . Thank you so much.

Ответить
@prashantdas3618
@prashantdas3618 - 16.07.2022 04:52

Question 5)
for i in range(1, 6):
print((str(i)+' ')*i)

Ответить
@saishkhade5452
@saishkhade5452 - 30.06.2022 21:41

Sir can you share the link for google collab notebook which you have shown in the video?

Ответить
@rohittech5605
@rohittech5605 - 26.06.2022 05:58

Ye video agar hindi me rahta to abhi million view rahta , fantastic

Ответить
@aishwaryraj1142
@aishwaryraj1142 - 20.06.2022 08:54

l = [ 1,1,1,2,2,2,3,3,3,3,4,5,5,5,6,6]
l = list(set(l))
to remove duplicate elements from list

Ответить
@1111Shahad
@1111Shahad - 16.06.2022 14:17

Thank you Anirudh

Ответить
@ashwinr5058
@ashwinr5058 - 15.06.2022 21:45

Thank you for sharing

Ответить
@vaishnavi.pvaishnavi.p8474
@vaishnavi.pvaishnavi.p8474 - 13.06.2022 16:08

Is it the correct time for a fresher to learn python from now! To get a job later so easily plz answer it bro???

Ответить