Book
Module 1 - Section 0 - Introduction
Module 1 - Section 0 - Introduction
Completion requirements
View
After the completion of the module the students will be able to:
- describe what is Python language
- state what is an IDE
- use the Thonny IDE
- create and save Python scripts using Thonny
- use the CLI - Command Line Interface
CLI - Command Line Interface
A command-line interface or command language interpreter (CLI), also known as command-line user interface, console user interface and character user interface (CUI), is a means of interacting with a computer program where the user (or client) issues commands to the program in the form of successive lines of text (command lines).
In Thonny CLI is in the lower bottom area.
Commands are written after the symbol >>>
Example. Write after the symbol >>> the command print ("Hello World!")
>>> print ("Hello World!")