使用python实现strcmp函数功能示例
实现这个功能我相信大家一定明白他的意思了,很简单了,下面的代码大家参考使用吧
代码如下:
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)
相关推荐
lundongcai 2013-02-12
weixuejunphp 2019-04-16
iamlazyphper 2013-05-15
PHP100 2019-03-28
PHP100 2019-03-28
PHP100 2019-03-28
PHP100 2019-03-28
PHP100 2019-03-27
PHP100 2019-03-27
编程10000问 2019-03-27
人月神话的思维专栏 2018-02-09