Skip to content

Instantly share code, notes, and snippets.

View Prompt-bit's full-sized avatar
🟢
Free

Prompt-Bit Prompt-bit

🟢
Free
View GitHub Profile
@Prompt-bit
Prompt-bit / EXAMPLE.py
Last active September 29, 2025 13:15
Coding in GitHub
print("Hello World")
name = input("Enter your name: ")
print(f"Your name is: {name}")
age = input("Enter you age: ")
print(f"You're {age} years old")
# You could add more code here if you like