程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Algorithm (4) Use python to judge [odd/even] [whether the list is axisymmetric]

編輯:Python

前言

本章主要講述:用python判斷[奇數or偶數][whether the list is axisymmetric]


一、具體代碼實現

"""
匯總曾經被問到過的算法題
2、Determine whether a number is odd or even
3、Check if the list is axisymmetric:采用切片,list[::-1]
"""
def judge_odd_or_even_number(n):
"""
二、判斷是奇數還是偶數
:param n:
:return:
"""
if n % 2 == 0:
print(n, "為偶數")
else:
print(n, "為奇數")
def judge_list_axial_symmetry1():
"""
三、Check whether the list is axisymmetric
方法1、
:return:
"""
list1 = [2, 3, 4, 5, 6, 6, 4, 3, 2]
# list1 = [2, 3, 4, 5, 6, 5, 4, 3, 2]
i = 0
list_length = len(list1)
print("列表長度:", list_length)
# 1.第一種實現方法
while i < 0.5 * list_length - 1:
if list1[i] != list1[list_length - 1 - i]:
print("list1[i]:", list1[i])
print("list1[list_length - 1 - i]:", list1[list_length - 1 - i])
print("它不是對稱的")
sys.exit(0)
else:
i = i + 1
print("它是對稱的")
def judge_list_axial_symmetry2():
"""
三、Check whether the list is axisymmetric
方法2、【切片判斷】
:return:
"""
# before_list = [2, 3, 4, 5, 6, 6, 4, 3, 2]
before_list = [2, 3, 4, 5, 6, 5, 4, 3, 2]
# list[::-1]: 表示從右往左以步長為1進行切片.步長小於0時,返回序列為倒序
after_list = before_list[::-1]
print("after_list:", after_list)
if (after_list == before_list):
print("它是對稱的")
else:
print("它不是對稱的")
if __name__ == '__main__':
judge_odd_or_even_number(3)
# judge_list_axial_symmetry1()
# judge_list_axial_symmetry2()

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved