Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Python

Idiom #153 Concatenate string with integer

Create the string t as the concatenation of the string s and the integer i.

t = f"{s}{i}"

The f in front of the string makes it a Literal String, in which you can put expressions inside brackets
t = '%s%s' % (s, i)
t = s + str(i)
t = '{}{}'.format(s, i)
t : String := s & Integer'Image (i);

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