I create simple label in tkinter but it is created with {}, what I don't want to.
gameOver=Label(root, text=('Game over!\nYou scored', number, ' points!'),
font=('Arial Black', '26'), bg='red')
That is my code, where number is variable. But it prints "{Game over! You scored} 0 {points!}"
That is what get with this code (0 is value of number)

Any ideas to solve this problem are welcome