import getpass
from art import *
tprint("Hangman")
print("The game is for 2 players")
def guess():
guess_word = getpass.getpass("What is the word you want guess to him? ")
chara = print("The choosen word has:\n",len(guess_word),"characters")
characters = list(guess_word)
return characters
characters = guess()
for a in characters:
bjr = print("_")
when my variable "bjr = print("hello")"
the Em dash is like that
how to align "_" like that :
Thanks