def mymain():
import math
import easygui
import random
global a, b, c, d
#list of answers set1 =sin/cos set2=tan/cot set3=sec/csc
answerset1 = ['1/2', u"\u221A"'2/2', u"\u221A"'3/2', '1','0','-1/2', '-'u"\u221A"'2/2', '-'u"\u221A"'3/2', '-1']
answerset2 = [u"\u221A"'3/3', '1', u"\u221A"'3', 'undefined', '-'u"\u221A"'3/3', '-1', '-'u"\u221A"'3']
answerset3 = ['undefined', '2', u"\u221A"'2', '2'u"\u221A"'3/3', '-1','-2', '-'u"\u221A"'2', '-2'u"\u221A"'3/3'
#random value for different trig function
a = random.randrange(1, 6)
if a = 1:
a == 'sin'
elif a = 2:
a == 'cos'
elif a = 3:
a == 'tan'
elif a = 4:
a == 'csc'
elif a = 5:
a == 'sec'
else:
a == 'cot'
#random value for different angles
b = random.randrange(1, 17)
if b = 1:
b == '0 degree'
elif b = 2:
b == '30 degrees'
elif b = 3:
b == '45 degrees'
elif b = 4:
b == '60 degrees'
elif b = 5:
b == '90 degrees'
elif b = 6:
b == '120 degrees'
elif b = 7:
b == '135 degrees'
elif b = 8:
b == '150 degrees'
elif b = 9:
b == '180 degrees'
elif b = 10:
b == '210 degrees'
elif b = 11:
b == '225 degrees'
elif b = 12:
b == '240 degrees'
elif b = 13:
b == '270 degrees'
elif b = 14:
b == '300 degrees'
elif b = 15:
b == '315 degrees'
elif b = 16:
b == '330 degrees'
else:
b == '360 degrees'
#random values for radians
c = random.randrange(1, 17)
if c = 1:
c == 0
elif c = 2:
c == u"\u03C0"'/6'
elif c = 3:
c == u"\u03C0"'/4'
elif c = 4:
c == u"\u03C0"'/3'
elif c = 5:
c == u"\u03C0"'/2'
elif c = 6:
c == '2'u"\u03C0"'/3'
elif c = 7:
c == '3'u"\u03C0"'/4'
elif c = 8:
c == '5'u"\u03C0"'/3'
elif c = 9:
c == u"\u03C0"
elif c = 10:
c == '7'u"\u03C0"'/6'
elif c = 11:
c == '5'u"\u03C0"'/4'
elif c = 12:
c == '4'u"\u03C0"'/3'
elif c = 13:
c == '3'u"\u03C0"'/2'
elif c = 14:
c == '5'u"\u03C0"'/3'
elif c = 15:
c == '7'u"\u03C0"'/4'
elif c = 16:
c == '11'u"\u03C0"'/6'
else:
c == '2'u"\u03C0"
#random assign for degrees or radian
d = random.randrange(1 ,2)
if d = 1
d = b
else:
d = c
#actual program start here
msg = a + d"=?"
title = "unit circle pratices v0.1"
if a = 1 or 2:
choices = answerset1
if __name=='__main__':
mymain()
SyntaxError: invalid syntax
I keep getting syntax error with variable. what did I did wrong? I am trying write a program that help me practice with the unit circle.
==and=, using one when you're supposed to use the other (among many other errors with indentation and syntax). But most importantly, you need to try working with a much shorter program, get it to work without errors, and then work your way up to a full program. – David Robinson Jan 13 at 23:33