mirror of
https://github.com/Asabeneh/30-Days-Of-Python.git
synced 2026-06-12 21:01:48 +08:00
9 lines
233 B
Python
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']) |