파이썬 함수 개요
통사론:
함수를 정의하기 위한 간단한 구문입니다.
def name(parameters):
pass#body code to perform function as required for you:
이 def 키워드는 파이썬 프로그래밍 언어로 함수를 정의하는 데 사용되며 대부분의 모든 프로그래밍 언어는 대괄호({})를 사용하여 해당 함수의 본문을 정의하는 데 사용됩니다. 여기서 콜론(:)은 들여쓰기 즉 공백으로 사용됩니다. 함수를 시작하는 라인에서 함수의 본문을 정의합니다.
매개변수는 해당 값을 사용하여 일부 기능을 수행하는 데 사용되는 코더가 제공한 멤버입니다.
함수 아래에 있는 본문은 여기에 수행되는 응용 프로그램에 필요한 전체 계산 및 처리가 작성되는 핵심 역할입니다.
파이썬 언어의 함수 예:
def sum(a , b):
sum=a + b #adding two numbers
return sum #returning the sum of numbers
add=sum(10,5) #initializing parameters by calling the function from #outside
print(add) #it will print the returned values from function.
산출:
15
자바에서 동일한 프로그램:
public class sum
{
public static void main(String args[]){
int a=10;//initializing value of a to be 10 of datatype integer
int b=5;//initializing value of b to 5 of datatype integer
System.out.println(add(a , b));//sends the values of a and b and print the values for the calculations done in program.
}
public static int add(int a ,int b){
int sum =a + b; //adds the values of a and b and store the value in sum variable of integer datatype.
return sum;
}
}
산출:
15
설명:
자바에서는 클래스 이름 없이 함수를 직접 작성할 수 없고 클래스 이름 없이 파이썬으로 함수를 작성할 수 있으므로 다른 프로그래밍 언어에 비해 파이썬에서 쉽게 각 기능을 테스트할 수 있다는 큰 장점이 있습니다.
파이썬에서는 프로그래밍 언어에서 사용되는 변수의 데이터 유형을 제공할 필요가 없습니다. 그러나 변수를 사용하는 모든 장소에 데이터 유형을 제공해야 합니다. 데이터 유형은 다른 프로그래밍 언어에서 사용해야 합니다.
그들은:
int
long
float
double
char
byte
string
array
Reference
이 문제에 관하여(파이썬 함수 개요), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/rupeshdarimisetti/python-function-brief-1m0e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)