Search found 2 matches

by wtgamer
Thu Jan 11, 2018 4:52 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How do you display list elements cleanly in Renpy say statements?
Replies: 4
Views: 7089

[Solved] How do you display list elements cleanly in Renpy say statements?

How do you get elements from a list to be displayed without square brackets and the u' prefix? For example: default yourcards = ["Ace", "King", "Queen"] label start: "Your cards are [yourcards]" Comes back as: Your cards are [u'Ace', u'King', u'Queen] When wha...