mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-03-14 05:06:55 +01:00
10 lines
234 B
Python
10 lines
234 B
Python
from alchemy.elements import create_fire, create_earth
|
|
|
|
|
|
def lead_to_gold() -> str:
|
|
return f"Lead transmuted to gold using {create_fire()}"
|
|
|
|
|
|
def stone_to_gem() -> str:
|
|
return f"Stone transmuted to gem using {create_earth()}"
|