在字母中搜索首先按字母顺序排列的字母,然后返回该字母

时间:2016-10-03 23:38:19

标签: python loops while-loop

我正在尝试编写一个代码,基本上要求我先找到字母顺序排列并打印的字母。虽然在另一个功能中需要打印。需要使用while循环

这是我到目前为止所得到的。

def alphabetically_first(word):

    n = 0
    p = 0
    while n + 1 < len(word):
        if word[n] < word[n+1]:
            p = word[n]
        elif word[n + 1] < word [n]:
            p = word[n+1]
        n += 1
    print p 
    return

0 个答案:

没有答案