百度搜索页面有个AI对话,点击进去看看:
是不是文心一言?它说不是。
测试一下辅助写代码功能:
1、写个爬虫:
代码:
import requests
from bs4 import BeautifulSoup
# 目标网站的URL
url = "http://example.com"
# 发送GET请求获取网页内容
response = requests.get(url)
# 使用BeautifulSoup解析网页内容
soup = BeautifulSoup(response.text, "html.parser")
# 查找需要的数据,这里以获取所有链接为例
links = soup.find_all("a")
# 打印链接信息
for link in links:
print(link.get("href"))
2、写个卡片样式
<!DOCTYPE html>
<html>
<head>
<style>
.card {
width: 300px;
height: 200px;
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
margin: 10px auto;
background-color: #fff;
}
.card-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
}
.card-text {
font-size: 14px;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="card">
<h2 class="card-title">卡片标题</h2>
<p class="card-text">这里是卡片的正文内容。</p>
</div>
</body>
</html>
渲染结果:
3、测试一下上下文解读
4、测试一下福利功能
嗯!不错!值得推荐!