摘要:
4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.8 阅读全文
摘要:
3.19 3.20 3.21 3.6 3.7 阅读全文
摘要:
2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 阅读全文
摘要:
   str2 = input("请输入一个国家的名字:") print("世界这么大,{}想去{}看看.".format(str1,str2)) 第一章1.2 n = input("请输入整数N:") sum = 0 for i in 阅读全文
摘要:
大模型是指大规模预训练模型,是一种基于深度学习的人工智能模型。大模型利用大数据分析,整合出我们想要的答案。不仅如此,大模型还能自主学习,在与用户交互的过程中,不断优化回答。如今,依托大模型的强大能力,我们能迅速获取外界信息,普及学习能力,为创新发展提供思路。凭借着大参数与海量数据训练,大模型能帮助我 阅读全文
摘要:
from turtle import * color('red','yellow') begin_fill() while True: forward(200) right(170) if abs(pos()) < 1: break end_fill() done() 阅读全文
摘要:
from turtle import * fillcolor("red") begin_fill() while True: forward(200) right(144) if abs(pos()) < 1: break end_fill() 阅读全文
摘要:
import turtle def draw_rectangle(x, y, width, height, color): turtle.penup() turtle.goto(x, y) turtle.pendown() # 设置画笔颜色与填充颜色相同,去除边框 turtle.pencolor(c 阅读全文