A simple command-line game where the computer randomly selects a number between 1 and 10, and the user tries to guess it.
##How It Works## 1.The program randomly picks a secret number from 1 to 10.
2.The user is asked to enter a guess.
3.The program checks if the guess is correct or not and displays the result.
4.Fun and easy for Python beginners!
##Features## 1.Random number generation using Python’s random module
2.User input via the terminal
3.Basic use of if statements
4.Clean and readable code