Day08-User Input
The input() function is a built-in function that allows user input.
This input function takes input as a 'string' and gives a return value as string/character hence we have to pass that into a variable.
Example:
a = input("Enter language: ")
print("I...
codingsplash.hashnode.dev1 min read