Learn-AI-Assisted-Python-Programming icon indicating copy to clipboard operation
Learn-AI-Assisted-Python-Programming copied to clipboard

📖 《AI 辅助编程 Python 实战》这本书的大本营。

Results 48 Learn-AI-Assisted-Python-Programming issues
Sort by recently updated
recently updated
newest added

## 3.6 Examples of creating good functions with Copilot ## 3.6 借助 Copilot 创建优秀函数的几个例子 In this section, we’re going to write a bunch of functions with Copilot. We’ll code them...

试读样章

## Summary ## 本章小结 * Problem decomposition involves breaking a large problem into smaller tasks. * We use functions to perform problem decomposition in our programs. * Each function must...

试读样章

# 6 Testing and Prompt Engineering # 第六章 程序测试与提示工程 ### This chapter covers ### 本章内容概要 * Understanding the importance of testing Copilot code * Using closed-box versus open-box testing *...

试读样章

## Summary ## 本章小结 * Copilot is an AI assistant, which is an artificial intelligence (AI) agent that helps you get work done. * Copilot changes how humans interact with...

试读样章

## 1.6 The skills we need ## 1.6 我们所需的技能 If Copilot can write our code, explain it, and fix bugs in it, are we just done? Do we just tell...

试读样章

## 3.5 The cycle of design of functions with Copilot ## 3.5 与 Copilot 协作设计函数的流程 Designing functions with Copilot involves the following cycle of steps (see figure 3.3): 借助 Copilot...

试读样章

## 3.4 What’s a reasonable task for a function? ## 3.4 交给函数的合理任务应该是什么样的? There’s no clear rule for what makes a good function, but there are some intuitions and recommendations we...

试读样章

## 3.1 Functions ## 3.1 初识函数 Before we can learn about the details of writing a function, we need some insight into their purpose in software. Functions are small tasks...

试读样章

## 3.3 Roles of functions ## 3.3 函数的角色 Functions are used in many different roles in programming. At a high level, programs are functions that (often) call other functions. Critically,...

试读样章

## 3.2 Benefits of functions ## 3.2 函数的益处 We already mentioned that functions are critical in performing problem decomposition. Beyond problem decomposition, functions are valuable in software for a number...

试读样章