本文整理汇总了Python中PE.isPalindrome方法的典型用法代码示例。如果您正苦于以下问题:Python PE.isPalindrome方法的具体用法?Python PE.isPalindrome怎么用?Python PE.isPalindrome使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PE
的用法示例。
在下文中一共展示了PE.isPalindrome方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: prob4
# 需要导入模块: import PE [as 别名]
# 或者: from PE import isPalindrome [as 别名]
def prob4():
maxn = 0
for i in range(999, 900 , -1):
for j in range(999, 900 , -1):
print(i, j)
if i*j > maxn and PE.isPalindrome(i*j):
maxn = i*j
print(maxn)
示例2: range
# 需要导入模块: import PE [as 别名]
# 或者: from PE import isPalindrome [as 别名]
import PE
summ = 0
for i in range(1,1000000):
if PE.isPalindrome(i) and PE.isPalindrome(bin(i)[2:]):
print(i)
summ += i
print(summ)
示例3: range
# 需要导入模块: import PE [as 别名]
# 或者: from PE import isPalindrome [as 别名]
import PE
numLychel = 0
for num in range(1, 10000):
isPalindrome = False
iterNum = num
for iters in range(50):
iterNum += PE.reverse(iterNum)
if PE.isPalindrome(iterNum):
isPalindrome = True
break
numLychel += 0 if isPalindrome else 1
print numLychel