The function inin my python script works very weird. I do not know if this will be so, or if this is a bug in 3.3. Here is part of my script:
command = input("\ ")
if command in ['help', 'HELP', 'Help']:
print (help)
The first time I tried, typing help or HELP is working until help is working.
The next time I tried Help and HELP work while help does not work.
Every time I try to do this, he will be random on what he accepts and what does not. Someone please help me if this is a bug or something is wrong with the script.
source
share