Logo

Programming-Idioms

  • Python

Idiom #340 Last character of string

Assign to c the value of the last character of the string s.

Explain the type of c, and what happens if s is empty.

Make sure to properly handle multi-bytes characters.

c = s[-1]

Exception IndexError is raised if s is empty. c is a string of length 1, which may contain any valid unicode character.
char c = s[^1];

New implementation...
< >
programming-idioms.org