Mega Code Archive

 
Categories / Python / String
 

Concatenate Strings (glued together) with the + operator, and repeated with

word = 'Help' + 'A' print word print '<' + word*5 + '>'