Python Basics - Part 1
Displaying Output
To display output in the terminal we use the print() function.
Syntax: print(text to display)
Example:
print("Hello World")
Taking Input
For taking input, we use the input() function.
Syntax: input(text to display for input)
Exampl...
cstorm.hashnode.dev3 min read