안녕하세요 여러분
나는 s입니다. 캐빈
오늘은 기능을 보러 갔습니다.
함수를 코드의 작은 도우미로 생각해보세요. 계속해서 사용할 수 있는 레시피 같아요.
1.재사용성
2.조직
3.반복 방지
4.복잡한 문제 단순화
예:
def celsius_to_fahrenheit(celsius): return (celsius * 9/5) + 32 celsius1 = 25 fahrenheit1 = celsius_to_fahrenheit(celsius1) print(f"{celsius1}°C is {fahrenheit1}°F") celsius2 = 30 fahrenheit2 = celsius_to_fahrenheit(celsius2) print(f"{celsius2}°C is {fahrenheit2}°F") celsius3 = 15 fahrenheit3 = celsius_to_fahrenheit(celsius3) print(f"{celsius3}°C is {fahrenheit3}°F")
1. 사람들에게 인사
def greet(name): print(f"Hello, {name}!") greet("Alice") greet("Bob")
2. 두 숫자 더하기
def add(a, b): return a + b result = add(5, 3) print(f"The sum is: {result}")
3. 숫자가 짝수인지 홀수인지 확인
def is_even(number): return number % 2 == 0 print(is_even(4)) # True print(is_even(7)) # False
04. 세 숫자의 최대값 구하기
def max_of_three(a, b, c): max = None if a > b: max = a else: max = b if max > c: return max else: return c
5. 숫자의 계승 계산
def factorial(n): if n == 0: return 1 else: return n * factorial(n - 1) print(factorial(5)) # 120
6. 원의 면적 계산
import math def area_of_circle(radius): return math.pi * radius ** 2 print(area_of_circle(5)) # 78.53981633974483
위 내용은 함수()의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!