JavaScript
x
14
14
1
def user_input_validation(user_input_month , user_input_day):
2
if user_input_month < 1 or user_input_month > 12 :
3
valid_month = False
4
print ("Invalid month. Please enter a number between 1-12")
5
else :
6
valid_month = True
7
if user_input_day < 1 or user_input_day > 31 :
8
valid_day = False
9
print ("Invalid day. Please enter a number between 1-12")
10
else :
11
valid_day = True
12
if valid_month=True and valid_day = True :
13
return True
14
my error massage File “”, line 13 if valid_month = True and valid_day = True : ^ SyntaxError: invalid syntax
Advertisement
Answer
in if statement we should use double == the right syntax is
if valid_month==True and valid_day ==True :