filmov
tv
Python Function | addition and subtraction | python programming | tutorial #python #pythonlearning
Показать описание
Create a function calculation () such that
it can accept two variables value and calculate
the addition and subtraction of them. And also it
must return both addition and subtraction in a
single return call.
code:
def calculation(x,y):
addition = x+y
subtraction = x-y
return addition,subtraction
c,d = calculation(20,10)
print("addition and subtraction of number is: ",c,d)
output:
addition and subtraction of number is: 30 10
#pythonlearning #computerscience #coder #phyton #python3 #pythoncode #pythonprogramming
it can accept two variables value and calculate
the addition and subtraction of them. And also it
must return both addition and subtraction in a
single return call.
code:
def calculation(x,y):
addition = x+y
subtraction = x-y
return addition,subtraction
c,d = calculation(20,10)
print("addition and subtraction of number is: ",c,d)
output:
addition and subtraction of number is: 30 10
#pythonlearning #computerscience #coder #phyton #python3 #pythoncode #pythonprogramming
Functions in Python are easy 📞
Python Program To Add Two Numbers Using Functions
Python Functions (The Only Guide You'll Need) #12
Sum of Two Numbers | Addition of 2 Nums | Python Example Program
When you Over Optimize a Python Function
#32 Python Tutorial for Beginners | Functions in Python
print() vs. return in Python Functions
10. Functions [Python 3 Programming Tutorials]
Live stream Python 10 hours part 105
Using the sum() function with a Python list
Add THIS To Your Python Scripts! if __name__ == '__main__'
How variables work in Python | Explained with Animations [See description/first comment]
Beginner Python Tutorial 98 - Functions Calling Functions
What is Python's Main Function Useful For?
THIS Function TRICK In Python CHANGED My Life 😳
Using Functions in Python | Learning Python for Beginners | Code with Kylie #7
How To Use Functions In Python (Python Tutorial #3)
#15 Python Tutorial for Beginners | Import Math Functions in Python
Functions with Arguments in Python | Parameters vs Arguments | Python Tutorials for Beginners #lec60
How to: Plot a Function in Python
Every Python Function Explained
Python user input ⌨️
Python 3 Programming Tutorial - Function Parameters
Python's Map Function Explained..
Комментарии