Skip to content

Commit 54bdcfb

Browse files
authored
Update python
1 parent 75d5172 commit 54bdcfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import time
22
def session():
33
print("Are you sure you want to vote for John Doe")
44
print("Type in 1 for John Doe, 2 for Jane Smith, and 3 for Sirhan Sirhan")
5-
votenum = input("Who do you want to vote for?")
5+
vote = input("Who do you want to vote for?")
66
jon = 1
77
jane = 2
88
sir = 3
9-
if votenum = jon:
9+
if vote = jon:
1010
session()

0 commit comments

Comments
 (0)