Last active
April 19, 2025 14:31
-
-
Save FabioZTessitore/1a1dfe90bfcf959ad395e8d1580032f3 to your computer and use it in GitHub Desktop.
Esempio di semplice input (con prompt)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name.py | |
# Ottenere input dalla tastiera | |
name = input("Come ti chiami? ") | |
print(f"Ciao, {name}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment