30-Days-Of-Python/12_Day_Modules/main.py
Aren f65a3af42d
upload fixes and changes
Resolved errors(need some reviewing, might have missed some errors)
Added comments
Changed print to return (to avoid None)
Removed <\div>
Reviewed exercises and numbered them
Removed ";" in some part (; doesn't trigger error)
Reviewed the python files
2024-12-31 22:48:40 +01:00

10 lines
244 B
Python

from mymodule import generate_full_name as fullname, sum_two_nums as total, person as p, gravity as g
print(fullname('Asabneh','Yetayeh'))
print(total(1, 9))
mass = 100
print(mass)
weight = mass * g
print(weight)
print(p)
print(p['firstname'])