以下是一些Python編程基礎(chǔ)代碼示例:
1、計算器:
def add(x, y): return x + y def subtract(x, y): return x - y def multiply(x, y): return x * y def divide(x, y): return x / y print("選擇操作:") print("1.加法") print("2.減法") print("3.乘法") print("4.除法") choice = input("請輸入操作對應(yīng)的數(shù)字(1/2/3/4): ") if choice == '1': x = float(input("請輸入第一個數(shù)字: ")) y = float(input("請輸入第二個數(shù)字: ")) print("結(jié)果: ", add(x, y)) elif choice == '2': x = float(input("請輸入第一個數(shù)字: ")) y = float(input("請輸入第二個數(shù)字: ")) print("結(jié)果: ", subtract(x, y)) elif choice == '3': x = float(input("請輸入第一個數(shù)字: ")) y = float(input("請輸入第二個數(shù)字: ")) print("結(jié)果: ", multiply(x, y)) elif choice == '4': x = float(input("請輸入第一個數(shù)字: ")) y = float(input("請輸入第二個數(shù)字: ")) print("結(jié)果: ", divide(x, y)) else: print("輸入錯誤,請輸入正確的操作對應(yīng)數(shù)字!")
登錄后復(fù)制
2、判斷閏年:
def is_leap_year(year): if (year % 4 == 0 and year % 100 != 0) or (year % 400 == 0): return True else: return False year = int(input("請輸入一個年份: ")) if is_leap_year(year): print("{}年是閏年。".format(year)) else: print("{}年不是閏年。".format(year))
登錄后復(fù)制
3、字符串反轉(zhuǎn):
def reverse_string(s): return s[::-1] s = input("請輸入一個字符串: ") print("反轉(zhuǎn)后的字符串: ", reverse_string(s))
登錄后復(fù)制
4、求和:
def sum_numbers(n): return n * (n + 1) // 2 n = int(input("請輸入一個正整數(shù): ")) print("前 {} 個自然數(shù)的和為: {}。".format(n, sum_numbers(n)))
登錄后復(fù)制
這些示例代碼涵蓋了基本的 Python 編程概念,如變量、數(shù)據(jù)類型、運算符、函數(shù)、條件語句等。通過學(xué)習(xí)這些基礎(chǔ)代碼,您可以逐步掌握 Python
編程。ython 編程概念,如變量、數(shù)據(jù)類型、運算符、函數(shù)、條件語句等。通過學(xué)習(xí)這些基礎(chǔ)代碼,您可以逐步掌握 Python 編程。
以上就是python編程基礎(chǔ)代碼的詳細(xì)內(nèi)容,更多請關(guān)注www.92cms.cn其它相關(guān)文章!