Python: Strings - Methods

Oct 24, 2004 · Python is an interpreted programming language that allows ... CREATING STRINGS # concatenating two strings ... # join words back together >>> string.join(wrd_lst) hello world # python2.2 and higher >>> ‘ ‘.join(wrd_lst) hello world # replacing text in a string ................
................