Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
352 views
in Technique[技术] by (71.8m points)

string - Center a triple quoted long text in output

I'm creating a small RPG game to help me learn Python, and I'm trying to print a few lines of text with centered alignment. But when I put the text into triple quotes, the .center() method does not work.

If I just make a really long string with ""s for readability, the lines printed into the terminal are also really long. So I have to manually decide where to put a in order to start a new printed line.

Is there a more practical way to do it?

intro_scene.description = "The sound and smell of the rain is very inviting, just begging you to stay here longer,
eating, drinking and listening to the bard's song. The song is actually good, and you haven't heard a talented bard in
a while. Still, you came to this village in search for opportunities to make up your life. Anything would do, but as
you're talented with weapons, your services can be better suited as an adventurer instead of a carpenter."

print (intro_scene.description.center(130)) does not break the lines.

question from:https://stackoverflow.com/questions/65641249/center-a-triple-quoted-long-text-in-output

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

57.0k users

...