您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

判断一字符串是否对称,如:abccba

2024/5/24 9:35:08发布30次查看
# 1.判断一字符串是不是对称的,如:abccba def is_symmetrical(str): length = len(str) for index in range(length / 2): if str[index] == str[length - index - 1]: pass else: return false return true if __name__ == "__main__": print is_symmertrical("abcdcba"), print is_symmertrical("abccaa"), 运行结果: true false # 2.用递归的方法判断整数组a[n]是不是升序排列 # index初始化为1 def is_asc(sequence, index): if index > len(sequence) - 1: return true if sequence[index] > sequence[index - 1]: return is_asc(sequence, index + 1) return false if __name__ == "__main__": sequence1 = [1, 100, 100, 200] print is_asc(sequence1, 1), sequence2 = [1, 100, 101, 500] print is_asc(sequence2, 1), 运行结果: false true
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product