From 49b9faedab55557f4baeee5cf8285ed62b4a62d8 Mon Sep 17 00:00:00 2001 From: ch0ccyra1n Date: Thu, 19 Sep 2024 14:06:24 -0700 Subject: [PATCH] wrap text without creating newline in middle of word --- main.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 3f4b4c5..5a24153 100644 --- a/main.py +++ b/main.py @@ -1,16 +1,19 @@ #!/usr/bin/env python import yaml +import textwrap + +wrapper = textwrap.TextWrapper(break_long_words=False) def validate_encounter(encounter): run_encounter(encounter) def run_encounter(encounter): if 'scenario' in encounter: - print(encounter['scenario']) + print(wrapper.fill(text=encounter['scenario'])) if 'choices' in encounter: for choice in range(len(encounter['choices'])): - print(f"{choice}. {encounter['choices'][choice]}") + print(wrapper.fill(text=f"{choice}. {encounter['choices'][choice]}")) playerChoice = int(input("> ")) if playerChoice >= 0 and playerChoice <= 9: if encounter['choices'][playerChoice] == "Exit game":