# Python code to add two numbers. NOT GOOD CODE.
def sum(a, b) -> int:
"""Sum two numbers. Not that hard."""
return a + b
def main():
while input("Want sum more? ") in ["y", "Y"]:
print(f"Doing sum work: {sum(int(input('First number? ')), int(input('Second number? ')))}")
if __name__ == "__main__":
main()
- Turn on Github Pages
- Outline my portfolio
- Introduce myself to the world
Github documentation Github glossary Git documentation
Fausto Jiménez de la Cuesta