다음은 Python 프로그래밍의 몇 가지 기본 코드 예입니다.
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("请输入操作对应的数字(1/2/3/4): ") if choice == '1': x = float(input("请输入第一个数字: ")) y = float(input("请输入第二个数字: ")) print("结果: ", add(x, y)) elif choice == '2': x = float(input("请输入第一个数字: ")) y = float(input("请输入第二个数字: ")) print("结果: ", subtract(x, y)) elif choice == '3': x = float(input("请输入第一个数字: ")) y = float(input("请输入第二个数字: ")) print("结果: ", multiply(x, y)) elif choice == '4': x = float(input("请输入第一个数字: ")) y = float(input("请输入第二个数字: ")) print("结果: ", divide(x, y)) else: print("输入错误,请输入正确的操作对应数字!")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))4. 합계:
def reverse_string(s): return s[::-1] s = input("请输入一个字符串: ") print("反转后的字符串: ", reverse_string(s))이 샘플 코드는 변수, 데이터 유형, 연산자, 함수, 조건문 등과 같은 기본적인 Python 프로그래밍 개념을 다룹니다. 이러한 기본 코드를 배우면 점차 Python을 마스터할 수 있습니다. 프로그램 작성. 변수, 데이터 유형, 연산자, 함수, 조건문 등과 같은 Python 프로그래밍 개념 이러한 기본 코드를 학습하면 Python 프로그래밍을 단계별로 마스터할 수 있습니다.
위 내용은 파이썬 프로그래밍 기본 코드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!