Last active
April 19, 2025 14:30
-
-
Save FabioZTessitore/a2b78a2570a71562a570e00fd49f177f to your computer and use it in GitHub Desktop.
Esempio di semplice input (prompt separato)
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 | |
print("Come ti chiami? ") | |
name = input() | |
print(f"Ciao, {name}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment