Introduction to PyCharm
Overview
Teaching: 21 min
Exercises: 15 minQuestions
What is an IDE?
What is a PyCharm Project?
Objectives
Integrated Development Environment (IDE)
And IDE is a piece of software that provides a set of tools to facilitate the development of code. These tools usually include a powerful code editor, a debugger, a profiler and others. These tools are very useful during the development of code, specially in large projects, and while they are usually available independently, the IDE integrate them in a single software for more convenience.
Create a new project
-
Define python environment
-
Create a new file
Key Points