Lesson 1 of 0
In Progress
Lesson #1: Intro
Welcome to the CodeDirect.org interactive Python tutorial.
Whether you are an experienced programmer or not, this website is intended for everyone who wishes to learn the Python programming language.
What can Python do?
- Python can be used on a server to create web applications.
- Python can be used alongside software to create workflows.
- Python can connect to database systems. It can also read and modify files.
- Python can be used to handle big data and perform complex mathematics.
- Python can be used for rapid prototyping, or for production-ready software development.
Python is a very simple language and has a very straightforward syntax. It encourages programmers to program without boilerplate (prepared) code.
To print a string in Python 3, just write:
print(“Hello, CodeDirect!”)