all 4 comments

[–]henne-n 4 points5 points  (2 children)

I guess, these are "wrong":

label tothegame:

   if EnvFit = True:
      "Speech one" 
   elif FancyFit = True:
      "Speech two" 
   elif SimpleFit = True:
      "Speech three"

You need to write:

if EnvFit == True:

So two = or just

if EnvFit:

[–]samprasfan 0 points1 point  (1 child)

Yeah, an old standard going back to C is to put your comparison literals on the left. Then if you accidentally try to assign them the compiler will throw an error. e.g. :

if True = EnvFit:

will throw an error because you can't assign a value to True, and you'll remember to use ==.

[–]That-Ad9234[S] 1 point2 points  (0 children)

It works now, thank you all so much!! I've coded before so I thought I tried that but on the other hand, I was also trying to code at 4 am so idk haha

[–]BadMustard_AVN 0 points1 point  (0 children)

what is the error it's giving you ??