mirror of
https://github.com/Asabeneh/30-Days-Of-Python.git
synced 2026-06-06 21:09:15 +08:00
17 lines
309 B
Python
17 lines
309 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'
|
|
}
|
|
|
|
|