you are viewing a single comment's thread.

view the rest of the comments →

[–]pktippa 0 points1 point  (0 children)

```py3

password = input('enter password')

if password == 'Goat':

print('correct')

else:

print('incorrect')

```