[Solved] Have an issue with input command
[ad_1] For something to be a string in Python, it needs quotes around it. Right now Python thinks that O etc. are variables. Fixed: x = input(“Enter your blood type: “) if x == ‘O’: for y in range(6): print(“O O O O O O”) elif x == ‘A’: for y in range(6): print(“A A … Read more