wrap text without creating newline in middle of word
This commit is contained in:
parent
7322c36043
commit
49b9faedab
1 changed files with 5 additions and 2 deletions
7
main.py
7
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":
|
||||
|
|
Loading…
Add table
Reference in a new issue