Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

Hi Pankaj, very useful indeed. I have a question: Why is this piece of code picking the character in the last position of the string and not the char in the position zero of the string? (if I move the char operand in the assignment statement to the other side of the operator then Python picks the char in position zero) s1 = c + s1 # appending chars in reverse order Thanks for clarifying. Rody
- Rody
Hi, Could you please help to explain the logic, as in what does Python do, for 1.1) Python Reverse String using Slicing. Confusing part are the double colon operators. I understand the first one is to tell Python to look at all the elements in string, the second one I’m unsure about but [ -1] means that the first item to return needs to be at length [-1]. What does the second colon operator tell Python to do? Thanks
- Kai
Hi, Thank you for the explanation. I also wanted to know how to add new lines to the output. For example I have made a reverse string input program: def reverse_slice(s): return s[::-1] s=input('enter a string ') print(s[::-1]) How would I a make my answer be on multiple lines?
- J