import random
list1 = ["chips", "banana", "cake", "wine", "cookie", "apple", "chocolate"]
random_word = random.choice(list1)
user_guesses = 0
guess_limit = 10
index = 0
guessleft = guess_limit - user_guesses
index_1 = random_word[index]
length = len(random_word)
for a in range(len(random_word)):
print("_")
So the output of this loop will be underscores under eachother instead of them being after eachother like this _ _ _ _ _
How can i fix this?