Skip to content

Commit

Permalink
解决了 空指针异常 Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
K8X16 committed Jan 10, 2025
1 parent 86f5f7e commit dd21566
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions mymodule.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
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'
}


0 comments on commit dd21566

Please sign in to comment.