You are one of the best tutors. I like your description because I am a deaf person who wants to be familiar with python. So, Your description interest me so much. Thank you so much for your tutor
@devshaky1582 жыл бұрын
Sir your lecture is easy to understandable God Bless you sir 🙂🙂🙂
@litunbls89594 жыл бұрын
ur sessions are like studying in a class rooom
@AdarshBantu Жыл бұрын
very good explanation Sir
@anithaanitha54145 жыл бұрын
Do more sessions... Everyone wants ur sessions
@Understanding_the_world_withme4 жыл бұрын
Very well explained sir.. Thank you sir..
@bijenderchhoker62995 жыл бұрын
Superrrrrrrr😎🙏
@narnevinaykrishna9246 жыл бұрын
Super Anna, neat ga simple ga close chesav
@akuljaiswal67555 жыл бұрын
hi sir . ur teaching is very good but please create a playlist chapterwise so its easy to search and access or at the end of the video give a link . thanking you
@hariprasad-xl4iz2 жыл бұрын
Good explanation
@vijaysahal45564 жыл бұрын
nice sir 👍🏻👍🏻👍🏻👍🏻
@trivenisirigiri13554 жыл бұрын
Tq... Sir chala simple ga, Andaru ardam chesukoni way lo cheparu
@surabhipal95533 жыл бұрын
We can access a tuple element using Index. For ex: a=(1,2,3) then a[1]=2
@vkgamer0155 Жыл бұрын
Yes
@dusanapudisarayu47752 жыл бұрын
Nice explanation sir
@anithaanitha54145 жыл бұрын
Good teaching
@vinayagarwal9993 жыл бұрын
Amazing
@madhusudhan49963 жыл бұрын
Sir please do videos on machine learning and deep learning...
@AbhishekKumar-cp3rw5 жыл бұрын
Thanku Ser I understood very easily...
@kunwarsourabhkumarsingh10142 жыл бұрын
thanku sir
@subashnaidu17702 жыл бұрын
Devudu ayya miru🙏
@neelavigneshwar34954 жыл бұрын
Super
@Prashant.8262 жыл бұрын
Sir,all these operators are applicable when tuple have the elements with int,float,str,bool. All values
@madhureddy22162 жыл бұрын
How can identify the tuple or not in a given question
@rameshnaikr12724 жыл бұрын
Thank you sir
@siddasmaran4 жыл бұрын
sir can we have like this (a+b)*2
@natsudragneel96104 жыл бұрын
Sir how can I swap elements in tuple.... Is it possible???
@sudhakarrayi55274 жыл бұрын
Tuple is immutable so you cannot swap
@shafeeqix40962 жыл бұрын
Is opeators and operations are same?
@yalamalarajyalaxmi84594 жыл бұрын
Sir why we can't change the elements in tuples rather than list
@ragipindiamarnathreddy4032 жыл бұрын
Sir, Is there any chance to convert tuple into list.
@sahidsk64945 жыл бұрын
Thx
@venkateswararaovenigalla86905 жыл бұрын
how to scan tuples sir
@sundeepsaradhi5 жыл бұрын
Hi I didn't understood your question and pls elaborate the question
@siddasmaran4 жыл бұрын
how can we return multiple index value (1, 2, 3, 4, 5, 6, 7, 8, 8, 7, 8, 6, 8, 5, 8, 5, 1, 2, 3, 4, 5, 6, 7, 8, 8, 7, 8, 6, 8, 5, 8, 5) c.index(8)
@knowledgesharing18485 жыл бұрын
sir,may i know some real life examples where tuples are used
@raymondsful5 жыл бұрын
As said before if you don't want to change the existing values say, network you want to connect, scan all the networks, and connect always the same network.
@muralikrishna48595 жыл бұрын
can we use length , min , max func in list also ?
@prxzads.65655 жыл бұрын
yes..we can
@5074-c3k4 жыл бұрын
Sir ... [(2, 6), (3, 4) ] in this i want to get a individua number of 2 and 6 and add the number and get result as 8
@sajjumohammad25245 жыл бұрын
Sir jntuh syllabus 4yr v topics chepparaplz
@computationalbadass4 жыл бұрын
I am using Pycharm and it is not working for mr
@ashishala51293 жыл бұрын
sir pakkana chalo cinema vinupadutundhi, kodigaa distrubance ga anipistundhi
@narendralv63795 жыл бұрын
tuple("Hello") did not work for me
@sundeepsaradhi5 жыл бұрын
Hi X=("hello"); print(X); Try this it will work This statements will create a triple with one string "hello".
@naveenhagaragi84604 жыл бұрын
you should try print(tuple("Hello")) o/p - ('H','e','l','l';o')
@vudariprabhakarmudiraj9754 жыл бұрын
a=(1,2,3,4) for elements in a print(elements).....i am getting error please explain me
@shreevidya32254 жыл бұрын
for elements in a:
@purnaprasad8784 жыл бұрын
U should type print(a)
@naveenhagaragi84604 жыл бұрын
i have string stored in a variable and i want to convert it to tuple. x='hello' print(tuple(x)) This throws an error, TypeError: 'str' object is not callable