Pycharm Edu 自带入门教程:Getting Started for Students

On this page:
  • 1、The first start
  • 2、Creating an educational project
  • 3、Lesson 1. First Program and Comments
  • 4、Executing a task
  • 5、Navigating between tasks
  • 6、Starting a task all over again
  • 7、Getting task hints
  • 8、Navigating between answer placeholders
  • 9、Using Python console
  • 10、How to reset the entire course?
  • 11、Adaptive courses
  • 12、Summary
Overview

This guide aims to help the students get a grip of PyCharm Edu and pass through the initial course of Python programming.

The first start

Having launched PyCharm Edu, you see the Welcome screen first. Here, choose the very first option Introduction to Python. PyCharm Edu silently creates a project, and opens it.

Now look at the new project:

Where (1) is the Project tool window that shows the project itself, (2) is the editor, (3) is theTask Description tool window with the course progress bar (4) , (5) is the Run tool window and (6) is the Python Console tool button.

To learn what is a tool window and how to handle it, refer to the corresponding sections of the documentation.

As you see, the Project tool window contains the following major entities:

  • Lessons, marked lesson. When a lesson is completed, its icon changes to lesson_completed.
  • Tasks, marked task . When a task is completed, its icon changes to task_complete
  • Python files, markedpythonScript, and all other file types, supported by PyCharm Edu.
  • Sandbox, where you can create files and folders of your choice.

Creating an educational project

By the way, when you feel yourself better with Python, you can create an educational project yourself. To do this, just choose File | New Project... on the main menu, and follow the steps of the wizard.

This procedure is described in the corresponding section of this documentation.

As an exercise, let's explore the first lesson and fulfil its tasks.

Lesson 1. First Program and Comments

Expand the Introduction lesson lesson. To do that, click right arrow arrow_right_1 next to lesson name. You see the nested tasks task:

intro_to_python

Click arrow_right_1 next to the first task name, and see the Python file hello_world.py. This file is opened in the editor by default.

To the right of the editor, there is the Task Description tool window with the task text.

Above the task description, there is the toolbar with the following icons:

  •  — click this button to make sure your answer was correct.
  •  /  — click these buttons to open the previous or next task in the editor
  •  — click this button to drop changes to a task and start it anew
  •  — click this button to show prompt for the current task.

Executing a task

The editor tab is occupied by a task itself. A task consists of one or more frames that serve as placeholders for your code — you need to type your answer inside the placeholder.

In our case, you have to introduce yourself to the world, that is, type your name in the frame:

Before checking the task, you might want to run it — just to see for yourself how it works. For that, there is a special icon in the left gutter of the editor:

If you click this icon, the current Python script will run and show you its output in the Run tool window:

When ready, click  in the Task Description tool window, to check whether the task within a placeholder has been executed correctly:

Yes, you are right! Congrats are well deserved.

By the way, if you click  in the Run tool window, the output will disappear. If your attempt was not correct, PyCharm Edu also informs you about it:

As you see in the Project tool window, the correctly executed task is marked green, while the incorrect task is marked red. Let's get rid of red and repeat the task!

Note that if a task contains more than one placeholder, each placeholder with correct code becomes green, while a placeholder with incorrect code becomes red. The entire task will be considered correct and marked green only when all the placeholders are filled in with correct code!

As the current task has been successfully executed, let's pass to the next one. To do that, click the right arrow button , or press Ctrl+Right. PyCharm Edu opens the next task in the editor. Note that the newly opened file that contains a yet untouched code, is underlined with the red curvy line, since there are syntax errors.

When you enter syntactically valid solution, this red curvy line will disappear.

Clicking the left arrow  or pressing Ctrl+Left lets you jump to the previous task.

Starting a task all over again

Suppose now that you've made several attempts to execute a task, and now there are lots of changes, and you want to start everything from scratch.

In this case, click refresh on the toolbar of the Task Description tool window, and see how PyCharm Edu returns to the original state of a task:

Getting task hints

If you are not sure what are you supposed to do to fulfil a task, you can always see the task description. It is always available in the Task Description tool window.

You can also view hints for each placeholder. To do that, place the caret in the answer placeholder and click intentionBulb :

Suppose now that your task contains several placeholders, and you have to type something meaningful in each one. You know well enough the answer to the second question, but you are not sure about the first one, which now holds the highlight.

No problem — you can start with any question you like better. To do that, press Ctrl+Enter, and the placeholders of the next question now gets the focus:

Now type your answer here, and then press Ctrl+Enter again to jump to the first frame.

Using Python console

Finally, let's try working in the console. Click the tool window button Python Console. The console starts, allowing you to enter commands:

Pressing Enter  executes the current command. You can use the history of commands already entered in the console: press up or down arrow keys to navigate through the history.

Note that code completion is available in the Python console. For example, start typing the keyword 'type' and press Ctrl+Space after the first letters. PyCharm Edu suggests matches:

Code completions after the opening parenthesis

and after dot

are also available.

Pressing the toolbar button show-watches shows you variables used in the current session:

How to reset the entire course?

At some point you may want to reset the entire course. There is no special button or menu entry for that in PyCharm Edu, so you have to do this manually.

To reset the entire course, follow these steps:

  1. On the main menu, choose File | New project...
  2. In the dialog box that opens, choose project type Educational.

3. Specify the new directory for your project. If you are going to reset Introduction to Python, you have to delete the PythonIntroduction folder (this folder by default resides under your home folder in PycharmProjects/PythonIntroduction) — and the next time you'll click theIntroduction to Python option, PyCharm Edu will create a new educational project for you.

Adaptive courses

Do you feel yourself strong enough to skip the tasks too simple for you? Or you are not sure of yourself and would like to repeat the tasks more than once? If this is the case, you can choose the so-called adaptive course.

This is how it's done… In the New Project dialog (opened from the Welcome screen, or by choosing File | New Project... on the main menu) select Educational project type, and then, in the Courses drop-down list, choose Adaptive Python:

Click Create... it takes time. At last you educational project is ready. You see, that it slightly differs from the ordinary project:

Here (1) is the Project tool window with just one task and the Sandbox, (2) is the editor where you will type your code, and (3) is the Task Description tool window which features two buttons on top, Too Hard and Too Boring.

Oops! The task about squirrels seems too complicated... Let's click the first button. PyCharm Edu loads the next, less complicated task:

No, this task seems too simple... Let's click the button Too Boring. This time, PyCharm Edu shows the more complex, task:

As you see, PyCharm keeps an eye on how you tackle the tasks and suggests you the next task depending on your choice. The only requirement for passing such a course is logging in toStepik.

Summary

That completes the tutorial. You got a head start and now can further explore the PyCharm Edu and learn Python along the way. We wish you best of luck!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值