vscode使用chatGPT 的方法

vscode使用chatGPT

一、下载chatPGT

在拓展中找到chatGPT,我这里下载的是中文版

vscode使用chatGPT 的方法_第1张图片

二、使用

1.使用快捷键 ctrl+shift+p进行查找 chatGPT

2.点击请输入问题

3.输入你的问题,回车,这样它就会进行代码的编写

vscode使用chatGPT 的方法_第2张图片

4.等一会儿就会给你结果啦

vscode使用chatGPT 的方法_第3张图片

三、现在来看看它写的怎样

生成的代码

import smtplib

# 设置发送方的邮件服务器和端口号
smtp_server = "smtp.qq.com"
smtp_port = 465

# 建立与邮件服务器的连接
server=smtplib.SMTP_SSL("smtp.qq.com", 465) 
# server = smtplib.SMTP(smtp_server, smtp_port)

# 启用安全连接
server.starttls()

# 登录到邮件服务器
server.login("[email protected]", "xxxxx")

# 设置电子邮件的收件人,主题和内容
to = "[email protected]"
subject = "Hello!"
body = "Hello, world!"

# 组装并发送电子邮件
message = f"Subject: {subject}\n\n{body}"
server.sendmail("[email protected]", to, message)

# 断开与邮件服务器的连接
server.quit()

是不是十分简洁,还有代码的解释和为什么用这种方法,是不是很有用呢?

到此这篇关于vscode使用chatGPT 的文章就介绍到这了,更多相关vscode使用chatGPT 内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(vscode使用chatGPT 的方法)