DEV Community

Cover image for To Reverse a string with out using for loop in python. | DAY 1
Jagannath Ghantenavar
Jagannath Ghantenavar

Posted on

To Reverse a string with out using for loop in python. | DAY 1

a = 'Dev.to'
a[::-1]

Explanation :

[start index : end index : step parameter ]

  • The first colon : indicates the start index (default is the beginning of the sequence).
  • The second colon : indicates the end index (default is the end of the sequence).
  • The third colon : indicates the step parameter, which means the sequence should be traversed in steps of -1 (i.e., in reverse)..

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay