上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 39 下一页
摘要: from random import randintfrom tkinter import *import tkinter.messagebox as msgboxtk = Tk()tk.title("电子算盘") # 窗口名称tank = Canvas(tk, width=1000, height 阅读全文
posted @ 2024-04-24 20:32 记得关月亮 阅读(2) 评论(0) 推荐(0) 编辑
摘要: def sierpinski_triangle(n): if n == 1: return " /\\", "/--\\" prev_triangle = sierpinski_triangle(n - 1) size = len(prev_triangle) new_triangle = [] # 阅读全文
posted @ 2024-04-24 20:26 记得关月亮 阅读(2) 评论(0) 推荐(0) 编辑
摘要: if __name__ == '__main__': # 读取输入的表达式和变量值 expression = input() variables = input().split(",") # 将变量值转换为字典形式 variables = dict(item.split('=') for item 阅读全文
posted @ 2024-04-24 20:25 记得关月亮 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 原文链接论c++/java/c 与python的语法上的区别 - H-Designer - 博客园 (cnblogs.com) 1.c/c++/java 对变量的定义很严格各种类型有严格的定义c/c++/java 定义如下:int a=0;而python直接:a=0即可 2.在c/c++/java中 阅读全文
posted @ 2024-04-17 19:13 记得关月亮 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 团队成员:郑天羽 张晨旭 孙怡然 产品介绍: 阅读全文
posted @ 2024-04-17 19:06 记得关月亮 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 完成周二展示ppt,组内核对流程 python实验: import matplotlib.pyplot as pltimport numpy as npx=np.arange(0,360)y1=x*xy2=np.cos(x)y3=y1*y2plt.plot(x,y1,color='blue')plt 阅读全文
posted @ 2024-04-17 17:59 记得关月亮 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 完成概率论、计网作业并提交 python实验: import refrom collections import Counterimport requestsfrom lxml import etreeimport pandas as pdimport jiebaimport matplotlib. 阅读全文
posted @ 2024-04-14 17:56 记得关月亮 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 做python大作业,但是没实现图形化界面 import os M = 15 # 校园景点数量 INF = 0x3f3f3f3f class Campus: att = ["","正门","科技楼","第一教学楼","基础教学楼","图书馆","北小门","宿舍区","西操场","学二食堂","澡堂 阅读全文
posted @ 2024-04-14 17:55 记得关月亮 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 组内一起商量下周二的ppt展示,完成“人人帮扶”APP的ppt展示 阅读全文
posted @ 2024-04-14 17:53 记得关月亮 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 完成个人作业用户使用说明书,录制演示视频,提交个人作业 python实验: def getText(): txt=open("english.txt","r").read() txt=txt.lower() for ch in '~!@#$%^&*()_+"{}[]|?.<>?': txt=txt. 阅读全文
posted @ 2024-04-14 17:51 记得关月亮 阅读(4) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 39 下一页