Console Operations
We can read from, or write to standard console. The following tutorials cover some of the scenarios of reading values of basic datatypes, and writing information to output.
- Print to Console OutputWe can print all basic datatypes like int, float, boolean, string, etc., to standard output using print() statement.
- Read String from ConsoleThis tutorial covers examples of using input() function to read a string entered by the user in console.
- Read Number from ConsoleThis tutorial covers examples of reading a number from entered by the user in console.
⫷ Previous Topic Python Datatypes
Next Topic ⫸ Python Conditional Statements