Beginner-friendly Python exercises to help learners practice using print() and input()
๐น Exercise 1: Hello You!
Ask the user for their name and greet them.
# Expected:
# Enter your name: Ramesh
# Hello, Ramesh!
๐น Exercise 2: Simple Math
Ask the user to enter two numbers. Print the total.
# Hint: Use int() or float() to convert inpu...
techxnomad.hashnode.dev2 min read