Skip to content

Commit 707aa8d

Browse files
committed
fix: figures in posts
1 parent 5351e6b commit 707aa8d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

content/chapter-1/102.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,10 @@ Computers don’t actually know how to read and run Python code. The only thing
2323
实际上,计算机并不懂得如何读取和执行 Python 代码。计算机唯一能够理解的是称为**机器码**的内容,这种码相比汇编代码来说更加难以理解,因为它是汇编代码的二进制表现形式(没错,仅仅是一连串的 0 和 1!)。在幕后,你的计算机将接收你所提供的任何 Python 代码,并在执行之前把它转换成机器码,正如图 1.1 所展示的那样。
2424

2525
> Figure 1.1 Your Python program goes through several steps before you see the output on your screen
26-
>
27-
> ![](chapter-1.files/chapter-16764.png)
2826
2927
> 图 1.1 在你的屏幕上看到输出之前,你的 Python 程序需要经历几个步骤
3028
29+
![](https://raw.githubusercontent.com/cssmagic/Learn-AI-Assisted-Python-Programming/master/content/_figures/1.1.png)
3130

3231
#### Copilot, your AI Assistant
3332

@@ -69,11 +68,10 @@ Figure 1.2 will give you an idea of how Copilot goes from prompt to program.
6968
图 1.2 将为你揭示 Copilot 是如何从提示词生成程序的过程。
7069

7170
> Figure 1.2 Going from prompt to program with Copilot
72-
>
73-
>![](chapter-1.files/chapter-19302.png)
7471
7572
> 图 1.2 使用 Copilot 从提示词生成程序
7673
74+
![](https://raw.githubusercontent.com/cssmagic/Learn-AI-Assisted-Python-Programming/master/content/_figures/1.2.png)
7775

7876

7977
You might wonder why Copilot writes Python code for us and not machine code directly. Isn’t Python an expendable intermediate step now? Well, no, and the reason is that Copilot is going to make mistakes. And if it’s going to make mistakes, and we need to get them fixed, then it’s a lot easier to do that with Python than with machine code.

0 commit comments

Comments
 (0)