feat: add input_test.py

This commit is contained in:
2025-09-06 23:21:40 +08:00
parent 43147922c5
commit 8cd3fde5ae

5
input_test.py Normal file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env python3
if __name__ == "__main__":
name = input("Enter your name:")
print(f"Hello {name}")