49836/reverse-a-string-in-python
How about: >>> 'hello world'[::-1] 'dlrow olleh' This is ...READ MORE
>>> 'hello world'[::-1] 'dlrow olleh' This is extended slice syntax. Syntax is ...READ MORE
Hi@akhtar, Strings can be reversed using slicing. To ...READ MORE
for c in "string": ...READ MORE
You can use word.find('o') as well to ...READ MORE
If you are talking about the length ...READ MORE
following way to find length of string x ...READ MORE
You can use the paste() command: You can ...READ MORE
class Solution: def firstAlphabet(self, s): self.s=s k='' k=k+s[0] for i in range(len(s)): if ...READ MORE
Joining strings in R is quite an ...READ MORE
OR
Already have an account? Sign in.