🔥 Get your free certificate of completion for the Python Interview Questions and Answers course, Register Now: glacad.me/3xnVcJf 🔥
@rupambora31072 жыл бұрын
Q7. I did this way, def pat(n): for i in range(0,n): for j in range(0, i+1): print(j, end=" ") print(" ") m=int(input("Enter number: ")) pat(m)
@karandhage78913 жыл бұрын
6:48 4th que can we do like that n=input("Enter the number :") rev=n[::-1] if n==rev: print(f'{n} is a palindrome number!!') else: print(f"{n} is not a palindrome number")
@mdnazma53063 жыл бұрын
Yeah karan it's possible
@irfanvlogs91003 жыл бұрын
i did my degree in bsc computers in distance mode..I have zero knowledge on programing or coding...can i start direct with python course or should i learn basic courses of other languages..
@sharadsharma95113 жыл бұрын
i was having similar scenario, i suggest you if u have lots of time first go with c do basics as much as you can do after that choose a anyone programming language which suits your goal(What you want to become such as web developer, backend developer, Data analyst etc) language can be java, C#, python etc if you dont have time choose anyone language which is currently on demand😀 choose your goal and keep working on it(Do coding more watch videos less)
@MUKESHJCSE_3 жыл бұрын
Thank you so so soo much sir. It is more helpful sir. Lot of different logics i should learn from that videos sir. Thank you so much for ur effect sir.
@Mr_Abhishek_843 жыл бұрын
Python Mcqs needed.
@tehsinbhati2 жыл бұрын
I REALLY LIKE HIS ENERGY
@danielmdubois3 жыл бұрын
You should use ord() to get the ascii vaue of a character, rather than just hard coding number to 65 for 'A'
@siddheshdeshmukh60893 жыл бұрын
cloud interview que also
@gokhalesadan2 жыл бұрын
helpful
@kanchidoshi69072 жыл бұрын
Can you please share the jupyter notebook?
@ramshah67333 жыл бұрын
sir, does selectorshub certification helps in interview and what are the selectorshub interview questions?
@hasanbohra67799 ай бұрын
There is a misconception about Shallow copy. What you did in Q14 is not copying, you are just referencing here. Shallow copy is when you use .copy() function or first_list[:] or list(first_list)