Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: New Users Introduce Yourself
Post: RE: New Users Introduce Yourself

Hello everyone! I'm Kopuz and I'm currently learning Python mainly through writing games with Pygame. I thought maybe I can pickup some tips on this forum and maybe share a few.
kopuz Bar 431 229,626 Nov-04-2016, 02:09 AM
    Thread: list of strings to a single string
Post: RE: list of strings to a single string

string_list = ['s', 't', 'r', 'i', 'n', 'g', 's'] string = '' for item in string_list:     string += s print string >> stringsUse +=, they must be the same type or you will get a TypeError.
kopuz General Coding Help 12 10,964 Nov-04-2016, 02:01 AM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020