I am new at Python and need a little help. I am trying to use the next command in order to get user input from screen: sys.stdin.readline()
All is fine when I want to print something but when I am trying to combine an if else statement it seems that the user input is ignoring the case sensitive string that I wrote in the if == and it always return the else even when I writing the input 'Sam'
I want to make a simple task like this one:
print("What is your name ?")
name = sys.stdin.readline()
print("Hello", name)
if name == 'Sam' :
print ('You are in our group')
else :
print('You are not in our group')
What should I do in the sys.stdin.readline() will acknowledge the if == argument ?
Thank you for you Help
input('Prompt: ').