使用python实现strcmp函数功能示例

Viola ·
更新时间:2024-11-13
· 610 次阅读

实现这个功能我相信大家一定明白他的意思了,很简单了,下面的代码大家参考使用吧
代码如下:
def strcmp(str1,str2):
        i = 0
        while i<len(str1) and i<len(str2):
                outcome = cmp(str1[i],str2[i])
                if outcome:
                        print outcome
                        return outcome
                i +=1
        return cmp(len(str1),len(str2))
str1='dfdcd'
str2='dfdc'

print strcmp(str1,str2)
print cmp(str1,str2)

您可能感兴趣的文章:python实现倒计时的示例Python中非常实用的一些功能和函数分享python中实现php的var_dump函数功能python 装饰器功能以及函数参数使用介绍python实现简单的计时器功能函数



用python 示例 strcmp Python

需要 登录 后方可回复, 如果你还没有账号请 注册新账号