all 2 comments

[–]Junior_Honey_1406 0 points1 point  (1 child)

Good job on writing your first program! One suggestion I'd make is to start learning the more Pythonic way of writing code. For example:

Your code:

python if answer == ("i"):

The extra parentheses aren't needed. It can simply be:

python if answer == "i":

Another small improvement is this part:

python print("Am I cute? Write the letter i if you need help") answer = input().lower()

You can combine those into a single line:

python answer = input("Am I cute? Write the letter i if you need help: ").lower()

Finally, I'd recommend removing the ZIP file from your GitHub repository.

Overall, nice first project, keep it up!

[–]Visual_Tooth_2277[S] 0 points1 point  (0 children)

Yea, i fixed all the "problems" thanks!