List Comprehensions | Python | Basic Data Types | HackerRank

  Рет қаралды 17,311

Coding Cart

Coding Cart

Күн бұрын

Пікірлер
@jaspinho
@jaspinho 4 жыл бұрын
I was looking for an explanation for this problem and you did it perfectly. Really Thank you for the explanation.
@codingcart
@codingcart 4 жыл бұрын
Glad it helped!
@deeptisingh904
@deeptisingh904 3 жыл бұрын
you really explained it very well.
@sudarsanan6700
@sudarsanan6700 3 жыл бұрын
Thanks sir very helpful video .I am a begginer this video helped me a lot to understand list comprehension.
@codingcart
@codingcart 3 жыл бұрын
Glad to hear that
@Aestheticdeeps
@Aestheticdeeps 9 ай бұрын
thank you sir well explained
@codingcart
@codingcart 9 ай бұрын
Glad it helped😊. Please do share with your friends too😊
@paruluniyal2305
@paruluniyal2305 4 жыл бұрын
Nicely explained 👍
@codingcart
@codingcart 4 жыл бұрын
Thank you 🙂
@jaganchowhaan9648
@jaganchowhaan9648 2 жыл бұрын
Cool explanation Bro ..Thanks and keep sharing
@codingcart
@codingcart 2 жыл бұрын
Thanks and welcome
@MdRizwanRabbani
@MdRizwanRabbani 4 жыл бұрын
Good info 👍
@codingcart
@codingcart 4 жыл бұрын
Glad it was helpful!
@janushaik976
@janushaik976 Жыл бұрын
ur explanation is awesome sir thank you
@codingcart
@codingcart Жыл бұрын
Glad you liked it. Do share with your friends too😊
@janushaik976
@janushaik976 Жыл бұрын
Sure 👍
@zaveriakhulsoom8470
@zaveriakhulsoom8470 3 жыл бұрын
explained very well, awesome thank you, do more videos.
@codingcart
@codingcart 3 жыл бұрын
Thanks, will do!
@fersalamanca2606
@fersalamanca2606 3 жыл бұрын
This is very well explained, though the only thing I don’t get is why when you create the ranges you add 1 to the variable, e.g. range(x + 1)
@trojan6741
@trojan6741 3 жыл бұрын
if we would have written range(x) then range function will work for x-1 times. eg. for i in range(10) will return [0,1,2,3,4,5,6,7,8,9]
@himanshutondwal7900
@himanshutondwal7900 3 жыл бұрын
Thankyou you explained it very well
@codingcart
@codingcart 3 жыл бұрын
Glad you liked it 😊
@anujgupta7749
@anujgupta7749 4 жыл бұрын
Good Job Brother, but why you don't use append in List Comprehensions?
@abhishekbhat3152
@abhishekbhat3152 4 жыл бұрын
simple and nice explainiation
@codingcart
@codingcart 4 жыл бұрын
Thanks for liking
@MrMukulpandey
@MrMukulpandey 2 жыл бұрын
Great 👌
@codingcart
@codingcart 2 жыл бұрын
Glad you liked it 😊.Do share with your friends too 🙂
@Cloudxxx23
@Cloudxxx23 Жыл бұрын
Hi. Why it needs to add 1?
@ragnarlodhbrok1684
@ragnarlodhbrok1684 2 жыл бұрын
y u didnt use append in list comprehension?
@harikrishnas5743
@harikrishnas5743 3 жыл бұрын
Why cant i get the output when i do the same code in my normal ide ? Explanations anyone?
@nombuso4162
@nombuso4162 3 жыл бұрын
Because HackerRank has shortcuts especially when it comes to the input
@nepalrameshwor1540
@nepalrameshwor1540 2 жыл бұрын
why this is wrong? new_list = [ [ i , j , k ] for (i , j , k) in range (x+1, y+1, z+1) if (i + j + k ! = n)]
@balrajsinghbhamra9678
@balrajsinghbhamra9678 2 жыл бұрын
range function simply doesn't work like the way you have coded it. Basic syntax of range is range(starting value, ending value, steps) and that is what you are doing here. Also, 'for' statement doesn't take multiple variables like that for answering the question in the video. For applying your logic properly, you can use a library called 'itertools'. A proper solution will be as follows: import itertools res = 0 x=1 y=2 z=1 n=3 res=[[i,j,k] for i,j,k in itertools.product(range(x+1),range(y+1),range(z+1)) if i+j+k!=n] print(res) In the above code, I have used the product method that returns the cartesian products of the iterables defined inside it's bracket. You can visit the site I am mentioning for knowing more about this method. www.geeksforgeeks.org/python-itertools-product/ happy coding!
@nikhilsahijwani3228
@nikhilsahijwani3228 3 жыл бұрын
LIST COMPREHENSION not multiple for loops
Lists | Python | Basic Data Types | HackerRank
18:49
Coding Cart
Рет қаралды 30 М.
Война Семей - ВСЕ СЕРИИ, 1 сезон (серии 1-20)
7:40:31
Семейные Сериалы
Рет қаралды 1,6 МЛН
24 Часа в БОУЛИНГЕ !
27:03
A4
Рет қаралды 7 МЛН
SLIDE #shortssprintbrasil
0:31
Natan por Aí
Рет қаралды 49 МЛН
Finding the percentage | Python | Basic Data Types | HackerRank
8:16
Nested Lists | Python | HackerRank
26:01
Coding Cart
Рет қаралды 41 М.
Python List Comprehensions Made Easy!!
11:50
Travis Media
Рет қаралды 19 М.
List Comprehension - BEST Python feature !!! Fast and Efficient
14:51
Python Simplified
Рет қаралды 201 М.
8. List Comprehensions Explained: Hackerrank | Python | Solution
15:44
Find a String | HackerRank | String | Python
17:08
Coding Cart
Рет қаралды 19 М.