HyperLearning AI - Introduction to Python

An introductory course to the Python 3 programming language, with a curriculum aligned to the Certified Associate in Python Programming (PCAP) examination syllabus (PCAP-31-02).
https://knowledgebase.hyperlearning.ai/courses/introduction-to-python

01. Getting Started in Python

https://knowledgebase.hyperlearning.ai/courses/introduction-to-python/modules/1/getting-started-in-python

In this module, we will define what exactly Python is and its high-level components before guiding you through how to setup a local development environment on your personal computer or laptop.

2.9. Hello World

In [1]:
print("Hello World")
Hello World