Skip to content

Commit bff7bd6

Browse files
authored
Merge pull request #5618 from msebolt/patch-29
Update tutorial-working-with-python-in-visual-studio-step-03-interact…
2 parents 3861481 + f67d785 commit bff7bd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/python/tutorial-working-with-python-in-visual-studio-step-03-interactive-repl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The Visual Studio **Interactive** window for Python provides a rich read-evaluat
4949
return ' ' * int(20 * cos(radians(x)) + 20) + 'o'
5050
```
5151

52-
1. Select the `import`, `from`, and `make_dot_string` function statements in the *.py* file, right-click, and select **Send to Interactive** (or press **Ctrl**+**Enter**). The code fragment is immediately pasted into the **Interactive** window and run. Now select the `make_dot_string` function and repeat the same command, which again runs that code fragment. Because the code defines a function, you can quickly test that function by calling it a few times:
52+
1. Select the `import`, `from`, and `make_dot_string` function statements in the *.py* file, right-click, and select **Send to Interactive** (or press **Ctrl**+**Enter**). The code fragment is immediately pasted into the **Interactive** window and run. Because the code has defined a function, you can quickly test that function by calling it a few times:
5353

5454
![Sending code to the interactive window and testing it](media/vs-getting-started-python-14-interactive4.png)
5555

0 commit comments

Comments
 (0)