Go through the string below and if the length of a word is even print "even!" string = 'I know how to print every word in this | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Go through the string below and if the length of a word is even print "even!" string = 'I know how to print every word in this

Can anyone explain me this one ?

11th Mar 2023, 6:04 AM
jaydeep kadbhane
1 Answer
+ 2
Hi, jaydeep kadbhane ! (i) Use the built-in function len(s) to get number of characters in the string with the variable name s, and (ii) use the modulo operator % to get the info about if the number of characters in s are even or not. n % 2 == 0 becomes True if the number in the variable n is even, otherwise it’s odd. This number n is here the return from the len-function. (iii) Use a if - else statement sepatate the two different cases.
11th Mar 2023, 6:19 AM
Per Bratthammar
Per Bratthammar - avatar