Please make a small GAME, And explain each line. Thank you
@ShivamSharma-xz5je5 жыл бұрын
Make OOP Output question videos next. It would be very nice.
@robishankardenre32695 жыл бұрын
Thank You, make more video this type, and make a small project please
@AmulsAcademy5 жыл бұрын
I will try :)
@robishankardenre32695 жыл бұрын
@@AmulsAcademy Thank you
@pratikdhande8265 жыл бұрын
So, how do i practice or study Python I mean what's the proper steps or way to progress, to gain that much knowledge. by the way greate work n good explanation.
@AmulsAcademy5 жыл бұрын
Thank you :) You need to practice programs, and try to write your own programs. :)
@subhajitghosh38675 жыл бұрын
U should make more videos on competitive coding
@AmulsAcademy5 жыл бұрын
Will do soon :)
@apoorvvyas525 жыл бұрын
please make a video on pascal triangle pattern
@AmulsAcademy5 жыл бұрын
Sure :)
@ahmedsersawy68535 жыл бұрын
Thank You
@AmulsAcademy5 жыл бұрын
Pleasure :)
@debojitmandal86703 жыл бұрын
But why . You see for eg - list1 = [10,5,20,0] List1.sort(). And it will sort in ascending order. But here it's returning none or syntax error
@AmulsAcademy3 жыл бұрын
Give me the program please ... :)
@debojitmandal86703 жыл бұрын
@@AmulsAcademy mam the same program which you thought in this video. Basically I am asking why I don't follow your concept
@AmulsAcademy3 жыл бұрын
I know, I don’t have this program with me now. That’s why I am asking you to give me the program, so that I can explain you :)
@debojitmandal86703 жыл бұрын
@@AmulsAcademy mam this video just follow this video
@jaswanthkumar4450 Жыл бұрын
x=[20,4,5,2].sort() print(x) why this gives none as output The reason this code snippet returns None is because the sort() method of a list sorts the list in place and does not return a value. When you use the line: python Copy code x = [20, 4, 5, 2].sort() You are essentially assigning the result of sort() to the variable x, but since sort() doesn't return anything (or rather, it returns None), x ends up being assigned the value None. If you want to sort the list and then assign it to the variable x, you should perform the sorting and assignment as two separate steps: python Copy code x = [20, 4, 5, 2] x.sort() print(x) # This will correctly print the sorted list [2, 4, 5, 20] Alternatively, if you want to keep the original list unchanged and create a new sorted list, you can use the sorted() function: python Copy code original_list = [20, 4, 5, 2] x = sorted(original_list) print(x) # This will print the sorted list [2, 4, 5, 20] print(original_list) # The original list remains unchanged [20, 4, 5, 2]