如何检查raw_input中的字母

时间:2014-10-22 17:22:11

标签: python

我希望脚本检查用户是否输入了字母" b"在他的输入开头

这是我的代码:

word = raw_input("Enter the magic word:");
print "your magic word is %s" % (word);

如果他没有输入字母" b"在开始时,脚本会自动添加它。

感谢任何帮助。

2 个答案:

答案 0 :(得分:2)

我没有告诉你如何完成检查,但你应该使用startswith:

>>> if word.startswith('b'):
...     print "Hei"
... else:
...     print "No"

答案 1 :(得分:1)

不需要在Python中添加分号

word = raw_input("Enter the magic word:")
word = word if word.startswith('b') else 'b' + word
print "your magic word is %s" % (word)