I Haz Codes
Enter the code below into python. Change the code so it –
– If the user enters your name, then it will display “I know XXXXXX”
Where xxxxx will be your name.
name = input("Enter a name - ")
if name == "bob":
print("I know bob")
else:
print("I do not know " , name)

| sana2123 | levelcap115 |
| shinx284680 |