16 DAYS Python Course
DAY 1
helloworld1.py
Description
This script prompts the user to enter their first name and surname, then prints a greeting using the provided inputs.
Code and Explanation
print(input("What is your name? ") + " " + input("What is your surname?"))
T...
arijitdas.hashnode.dev95 min read