例如:对于单词中的字母,如果该字母前面有元音..................
你会怎么用pythonic语言写的?
例如:
如果" h"之前是" s"单词中的任何位置return(True)
the_word("bash")
True
the_word("sushi")
True
答案 0 :(得分:0)
a = 'h'
b = 's'
if b+a in "bash": # True
..
if b+a in "hello": # False
..
if b+a in "sushi": # True
如果你想在一个函数中使用它,只需要a和b作为参数