PYTHON YEBAT
v1
Runtime not loaded yet
Clear output
Run code
main.py
1
# Write Python here, then hit Run code. def greet(name): """Say hello.""" print(f"Privet, {name}!") user = input("What's your name? ") greet(user) for n in range(1, 6): print(n, "squared is", n * n)
Output
Run your code to see the output here.