30-Days-Of-Python/12_Day_Modules/main.py
2021-07-08 04:15:03 +03:00

9 lines
233 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;
weight = mass * g
print(weight)
print(p)
print(p['firstname'])