I want the script to check if the user inputted the letter "b" at the beginning of his input
here is my code:
word = raw_input("Enter the magic word:");
print "your magic word is %s" % (word);
if he didn't enter the letter "b" at the beginning, the script will automatically add it.
any help is appreciated.