mirror of
https://github.com/Asabeneh/30-Days-Of-Python.git
synced 2026-06-03 21:02:42 +08:00
18 lines
304 B
Python
18 lines
304 B
Python
def generate_full_name(firstname, lastname):
|
|
space = ' '
|
|
fullname = firstname + space + lastname
|
|
return fullname
|
|
|
|
|
|
def sum_two_nums(num1, num2):
|
|
return num1 + num2
|
|
|
|
|
|
gravity = 9.81
|
|
person = {
|
|
"firstname": "Asabeneh",
|
|
"age": 250,
|
|
"country": "Finland",
|
|
"city": 'Helsinki'
|
|
}
|