Python error tkinter TclError unknown font style Normal

0 votes

This line:

pen.clear()
pen.write("score: {} High Score: {}".format(score, high_score), align="center", font=("Courier", 24, "Normal"))

Gives me the following error:

_tkinter.TclError: unknown font style "Normal"
Jul 22, 2019 in Python by Neha
2,683 views

1 answer to this question.

0 votes

Change the line 

pen.write("score: {} High Score: {}".format(score, high_score), align="center", font=("Courier", 24, "Normal"))

To:

pen.write("score: {} High Score: {}".format(score, high_score), align="center", font=("Courier", 24, "normal"))

Its not "Normal", its "normal".

answered Jul 22, 2019 by Yashita

Related Questions In Python

0 votes
1 answer
0 votes
1 answer

Error:“Unknown command syncdb” running “python manage.py syncdb”

Hello @kartik, $python manage.py syncdb is deprecated and not ...READ MORE

answered Aug 5, 2020 in Python by Niroj
• 82,880 points
3,854 views
+2 votes
2 answers

Error while printing hello world in python.

You must be trying this command in ...READ MORE

answered Mar 31, 2018 in Python by GandalfDwhite
• 1,320 points
5,407 views
0 votes
1 answer

Normal Python code equivalent to given list comprehension

You can try this code list1=[] for i in ...READ MORE

answered Jun 8, 2018 in Python by jain12
• 170 points
590 views
0 votes
2 answers
+1 vote
2 answers

how can i count the items in a list?

Syntax :            list. count(value) Code: colors = ['red', 'green', ...READ MORE

answered Jul 7, 2019 in Python by Neha
• 330 points

edited Jul 8, 2019 by Kalgi 4,068 views
0 votes
1 answer
+5 votes
6 answers

Lowercase in Python

You can simply the built-in function in ...READ MORE

answered Apr 11, 2018 in Python by hemant
• 5,790 points
3,488 views
0 votes
1 answer

When I create and remove files rapidly on windows using python I get WindowsError (Error 5)

Here's the short answer: disable any antivirus or ...READ MORE

answered Aug 31, 2018 in Python by charlie_brown
• 7,720 points
1,671 views
0 votes
11 answers
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP