forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request github#36153 from github/repo-sync
Repo sync
- Loading branch information
Showing
6 changed files
with
175 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
165 changes: 165 additions & 0 deletions
165
content/get-started/learning-to-code/learning-to-debug-with-github-copilot.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,165 @@ | ||
--- | ||
title: Learning to debug with GitHub Copilot | ||
intro: 'Identify and fix errors in your code by asking {% data variables.product.prodname_copilot %} for help.' | ||
topics: | ||
- Copilot | ||
versions: | ||
fpt: '*' | ||
shortTitle: Debug with Copilot | ||
--- | ||
|
||
Finding and fixing bugs in code can be frustrating, especially when you're a new developer. Thankfully, tools like {% data variables.product.prodname_copilot %} can quickly identify and squash bugs, letting you focus on more creative, interesting work. | ||
|
||
## Prerequisites | ||
|
||
The examples in this article assume you're using {% data variables.product.prodname_copilot %} to debug a Python project in {% data variables.product.prodname_vscode %} ({% data variables.product.prodname_vscode_shortname %}). To follow the examples, you need to: | ||
* Complete [Set up {% data variables.product.prodname_vscode %} with {% data variables.product.prodname_copilot_short %}](https://code.visualstudio.com/docs/copilot/setup-simplified) in the {% data variables.product.prodname_vscode %} documentation. | ||
* [Download Python](https://www.python.org/downloads/). | ||
* Install the [Python extension for {% data variables.product.prodname_vscode %}](https://marketplace.visualstudio.com/items?itemName=ms-python.python). | ||
|
||
## Learning to debug through examples | ||
|
||
There are two main situations you'll encounter when you try to run bugged code: | ||
|
||
* Your code exits before it finishes running, and you receive an error message. | ||
* Your code runs without errors, but the output is different from what you expected. | ||
|
||
Thankfully, {% data variables.product.prodname_copilot_short %} can help debug your code in both situations. To learn how, work through the following examples. | ||
|
||
### Debugging an error with {% data variables.product.prodname_copilot %} | ||
|
||
When you run bugged code, you'll often receive an error message. The message tells you the file and line where the error occurred and briefly describes what went wrong. However, error messages can be confusing. To fully understand and fix the bug, we can ask {% data variables.product.prodname_copilot_short %} for help. | ||
|
||
Let's try this out with the [`bugged_dice_battle.py`](https://github.com/new2code/debug-with-copilot/blob/main/bugged_dice_battle.py) file in the [`new2code/debug-with-copilot`](https://github.com/new2code/debug-with-copilot) repository. This program simulates a dice battle between two players using the following code: | ||
|
||
```python | ||
# Import the random module to easily generate pseudo-random numbers | ||
import random | ||
|
||
# Define a function that simulates a dice battle between two players | ||
def dice_battle(): | ||
|
||
# Generate random numbers between 1 and 6 for each player's die roll | ||
die_1 = random.randint(1, 6) | ||
die_2 = random.randint(1, 6) | ||
|
||
# Compare the die rolls and return the result as a string | ||
if die_1 > die_2: | ||
return "Player 1 rolled a " + die_1 + " and Player 2 rolled a " + die_2 + ". Player 1 wins!" | ||
elif die_1 < die_2: | ||
return "Player 1 rolled a " + die_1 + " and Player 2 rolled a " + die_2 + ". Player 2 wins!" | ||
else: | ||
return "Player 1 rolled a " + die_1 + " and Player 2 rolled a " + die_2 + ". It's a tie!" | ||
|
||
print(dice_battle()) | ||
``` | ||
|
||
First, we need to clone the repository locally: | ||
1. In {% data variables.product.prodname_vscode_shortname %}, open the Command Palette by pressing <kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Mac) or <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Windows/Linux). | ||
1. Type `Git: Clone` and press <kbd>Enter</kbd>. | ||
1. Paste the URL of the `new2code/debug-with-copilot` repository: | ||
|
||
```text copy | ||
https://github.com/new2code/debug-with-copilot | ||
``` | ||
|
||
1. Press <kbd>Enter</kbd>, then choose a location to save the repository on your computer. | ||
1. When prompted, open the repository in {% data variables.product.prodname_vscode_shortname %}. | ||
|
||
Now that we've cloned the repository, let's run `bugged_dice_battle.py` to see the output: | ||
|
||
1. Open the Command Palette by pressing <kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Mac) or <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Windows/Linux). | ||
1. Type `Terminal: Create New Terminal` and press <kbd>Enter</kbd>. | ||
1. If you are using Mac or Linux, in the terminal tab, paste the following code: | ||
|
||
```shell copy | ||
python bugged_dice_battle.py | ||
``` | ||
|
||
Otherwise, if you are using Windows, paste the following code: | ||
|
||
```shell copy | ||
py bugged_dice_battle.py | ||
``` | ||
|
||
1. Press <kbd>Enter</kbd> to run the program. | ||
|
||
Unfortunately, we get some error text in our terminal ending with the following message: `TypeError: can only concatenate str (not "int") to str`. To understand what this means, press <kbd>Command</kbd>+<kbd>Shift</kbd>+<kbd>I</kbd> (Mac) or <kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>I</kbd> (Windows/Linux) to open {% data variables.product.prodname_copilot_chat_short %}, then paste and send the following prompt: | ||
|
||
```text copy | ||
Explain in depth why my code produces the following error and how I can fix it: | ||
TypeError: can only concatenate str (not "int") to str | ||
``` | ||
|
||
{% data variables.product.prodname_copilot_short %} will respond that the error occurs because we are trying to concatenate the integers `die_1` and `die_2` to strings, and you can only concatenate strings to strings. It will then provide an updated version of our code that fixes the bug by using the `str()` function to convert the integers to strings before concatenating them. | ||
### Debugging an incorrect output with {% data variables.product.prodname_copilot %} | ||
Sometimes, bugged code runs without throwing any errors, but the output is clearly incorrect. In this case, debugging can be more difficult because {% data variables.product.prodname_vscode_shortname %} can't tell you the location or description of the bug. | ||
For these "invisible" bugs, {% data variables.product.prodname_copilot_short %} is particularly useful. Let's get some hands-on experience using the [`bugged_factorial_finder.py`](https://github.com/new2code/debug-with-copilot/blob/main/bugged_factorial_finder.py) file in the [`new2code/debug-with-copilot`](https://github.com/new2code/debug-with-copilot) repository. The Python program is supposed to calculate a factorial, and it contains the following code: | ||
```python | ||
# Initialize the factorial result to 1 | ||
factorial = 1 | ||
|
||
# Initialize the input number to 6 | ||
number = 6 | ||
|
||
# Loop from 1 to number (inclusive) and multiply factorial by each number | ||
for i in range(1, number + 1): | ||
factorial *= factorial * i | ||
|
||
print(f"The factorial of {number} is {factorial}") | ||
``` | ||
Since we've already cloned the repository locally, let's run `bugged_factorial_finder.py` to see the output: | ||
1. In {% data variables.product.prodname_vscode_shortname %}, open the Command Palette by pressing <kbd>Cmd</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Mac) or <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>P</kbd> (Windows/Linux). | ||
1. Type `Terminal: Create New Terminal` and press <kbd>Enter</kbd>. | ||
1. If you are using Mac or Linux, in the terminal tab, paste the following code: | ||
```shell copy | ||
python bugged_factorial_finder.py | ||
``` | ||
Otherwise, if you are using Windows, paste the following code: | ||
```shell copy | ||
py bugged_factorial_finder.py | ||
``` | ||
1. Press <kbd>Enter</kbd> to run the program. | ||
Unfortunately, the code isn't working as expected. We want it to return `720`, the correct value of 6 factorial, but the output is much higher than that. | ||
To understand what went wrong, with the `bugged_factorial_finder.py` file open in {% data variables.product.prodname_vscode_shortname %}, open {% data variables.product.prodname_copilot_chat_short %} and send the following prompt: | ||
```text copy | ||
Why is the output of this code so much higher than expected? Please explain in depth and suggest a solution. | ||
``` | ||
{% data variables.product.prodname_copilot_short %} will point out that, because we're using the `*=` operator, we're actually multiplying `factorial` by both `i` **and** `factorial`. In other words, we're multiplying by an extra `factorial` for each iteration of the loop. | ||
To fix this error, {% data variables.product.prodname_copilot_short %} will suggest code that removes the extra `factorial` from the equation, or that changes the `*=` operator to `=`. | ||
## Debugging your own project | ||
Now that you've practiced debugging some simple programs with {% data variables.product.prodname_copilot_short %}, you can use the same methodologies to find and fix bugs hiding in your own work. | ||
For example, to debug an error message generated by your code, send {% data variables.product.prodname_copilot_short %} the following prompt: | ||
```text copy | ||
Explain in depth why my code produces the following error and how I can fix it: | ||
YOUR-ERROR-MESSAGE | ||
``` | ||
Otherwise, if you're debugging an incorrect output, ask {% data variables.product.prodname_copilot_short %} why the output is incorrect and how you can fix it. For the best results, provide as much context as possible on how the output differs from your expectations. | ||
With these tactics, you're well equipped to start squashing bugs in your project! | ||
## Next steps | ||
As you continue coding, you'll likely encounter specific problem scenarios and errors that are difficult to debug. For a list of potential issues and example {% data variables.product.prodname_copilot_chat_short %} prompts to fix them, see [AUTOTITLE](/copilot/example-prompts-for-github-copilot-chat/debugging-errors). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters