Python - Programming Language
This course covers the basics of programming in Python. Work your way through the videos/articles and I'll teach you everything you need to know to start your programming journey!

Return Statements

Lesson 15
Author : 🦒
Last Updated : October, 2017


Code

Copydef add_numbers(num1, num2=99):
     return num1 + num2

sum = add_numbers(4, 3)
print(sum)