a=input("Enter a string:") k=a[ : :-1] if(k==a): print("The given string is a 'PALINDROME'") else: print("The given string is not a 'PALINDROME'")
@PavisnaPavisna-ko2oh3 ай бұрын
a='troll geek' k=KEEG LLORT k==a ===> NOT PALINDROME
@sampaths1143 Жыл бұрын
keep posting more videos u are doing a great job respect brooo
@codeio Жыл бұрын
Thank you!!!
@rahav1994 Жыл бұрын
(20,30,40,60)
@Janxssh Жыл бұрын
Anna ur teaching good anna
@prithiviraaj50903 жыл бұрын
Bro.... Next video on OOP concepts !!
@codeio3 жыл бұрын
Coming soon
@SivaKumar-rc4zq11 ай бұрын
Option (b)
@Nijan78905 ай бұрын
option A is the correct answer bro
@anusreekumar47232 жыл бұрын
Anna, entha output venum ennakku a a a a a name='ababababab' print(name[0:10:2],sep=' ') but output is aaaaa anna, enna code ezhuthuna output : a a a a a varum for string: name='ababababab'
a="ab ab ab ab ab" b=len(a) print(a[0:b:2]) You are create ab and ab between size of 2space Output:a a a a a
@LaksharaaAS Жыл бұрын
Anna yena step value 2 kudutha one string skip aguthu and step value 3 kudutha 2 strings skip aguthu
@Mini_infoo2 жыл бұрын
Option A
@Arulkanna2 ай бұрын
A is the correct option..
@PavisnaPavisna-ko2oh3 ай бұрын
a)(20,30,40,60) n-1=4
@kuttykutty62849 ай бұрын
Answer is ; A
@ArukkaniThavasi-ue1qn Жыл бұрын
Bro print line le braked changes pannanu
@Mini_infoo2 жыл бұрын
Need oops concept in python.
@BaluR-f6j Жыл бұрын
A)(20,30,40,60)
@gokul79192 жыл бұрын
Options A
@ooruvambuvangaottukaekalaa76239 ай бұрын
Its option B, as he used "," after the tup
@narendrangopal20612 жыл бұрын
can we use this same slicing concept for set and range? anyone please answer.
@narendrangopal20612 жыл бұрын
@code io-Tamil
@Bharanikumar-hq5uk5 ай бұрын
(20, 30,40,60) A
@DharshiniP-zm2sz Жыл бұрын
Option (A)
@ulloor_photography11 ай бұрын
A)
@pavithajaya6639 Жыл бұрын
b. () answer
@ManishaNisha-nk1gl5 ай бұрын
Option d
@RajaKaran-jo5os Жыл бұрын
Anna list comprehensions pathi oru video podunga pls onnum purla
@codeio Жыл бұрын
Sure bro..
@pavithajaya6639 Жыл бұрын
after bracket comma(,) is denoted.
@mohamedabuthaliff8098 Жыл бұрын
That's not a matter sis
@sellamuthuramu67975 ай бұрын
Answer is a) bro
@mohamedabuthaliff8098 Жыл бұрын
A is the answer bro
@Rahmath_Ibn_Ali Жыл бұрын
Answer is B ()
@kalaiarasan648 Жыл бұрын
answer A
@Anlinsteiojimsy4 ай бұрын
Ans : A
@sepsep-yc3ut Жыл бұрын
Sir option a
@kaviyac89753 жыл бұрын
👌👌👌
@codeio3 жыл бұрын
😊😊🙏🙏🙏🙏
@AlexBenva7 ай бұрын
Option A
@RamRakki Жыл бұрын
Option a
@ashlintechno93989 ай бұрын
A
@anandhalakshmi6187 Жыл бұрын
Answer option A
@mohammedsuheal658 Жыл бұрын
20,30,40,60
@herosharif9987 Жыл бұрын
A, (20, 30,40,60)
@prithiviraaj50903 жыл бұрын
Answer: D) Error Because 'Tup' is a single element tuple.
@codeio3 жыл бұрын
awesome
@prithiviraaj50903 жыл бұрын
@@mohamediburahimp7661 In tuples, individual elements are separated by commas. So in the given tuple 'Tup', we have only one element in its 0 index but we are asking the interpreter to print the elements of the tuple from the 1st index to 4th index, for which the tuple has no elements. So, we get the output as ERROR. Hope you understood it bro 😄
@codeio3 жыл бұрын
👍👍👍
@nandhiniruby-xr2mu Жыл бұрын
@@prithiviraaj5090 thank you for clearful explanation 💫👍
@pavithravenkatesan1624 Жыл бұрын
Bro, how u r saying from 1st to 4th index there is no element, how come the answer is error...can u pls explain bro because if I run the code I got (20, 30, 40, 60)