摘要: import pandas as pdimport numpy as npimport matplotlib.pyplot as pltdef sigmoid(x): # 定义网络激活函数 return 1/(1+np.exp(-x))data_tr = pd.read_csv('3.3 data_ 阅读全文
posted @ 2022-03-19 20:07 doublemiracle 阅读(26) 评论(0) 推荐(0) 编辑
摘要: import pandas as pdimport numpy as npimport matplotlib.pyplot as pltdef sigmoid(x): # 定义网络激活函数 return 1/(1+np.exp(-x))data_tr = pd.read_csv('3.3 data_ 阅读全文
posted @ 2022-03-19 19:26 doublemiracle 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-12-11 23:58 doublemiracle 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 第一种: class xiaoming: """小明""" def __init__(self): print("小明,10岁,男,上山去砍柴") print("小明,10岁,男,开车去东北") print("小明,10岁,男,最爱打游戏")class laoli: def __init__(sel 阅读全文
posted @ 2021-11-19 23:27 doublemiracle 阅读(37) 评论(0) 推荐(0) 编辑
摘要: import jiebaimport os,codecsfrom collections import Counterfile=open('liaozhai.txt','r',encoding='utf-8')a=file.read()#file.close()b=jieba.lcut(a)d=Co 阅读全文
posted @ 2021-11-14 10:46 doublemiracle 阅读(22) 评论(0) 推荐(0) 编辑
摘要: from random import randomprint('学号尾数为9') #描述比赛的函数def printIntro(): print("这个程序模拟两个选手A和B的羽毛球竞技比赛") print("程序运行需要A和B的能力值(以0到1之间的小数表示)") #用来输入数据的函数 两位选手的 阅读全文
posted @ 2021-11-03 10:09 doublemiracle 阅读(63) 评论(0) 推荐(0) 编辑
摘要: import timeimport datetimet1 = time.strftime("%H/%M/%S/%A/")b = datetime.datetime.strptime(f'{t1}','%H/%M/%S/%A/')t = b.strftime('%Y{}%m{}%d{}%H{}').f 阅读全文
posted @ 2021-10-24 11:40 doublemiracle 阅读(12) 评论(0) 推荐(0) 编辑
摘要: # 03 模拟超市结账行为money_all = 56.75 + 72.91 + 88.50 + 26.37 + 68.51money_all_str = str(money_all)print("商品总金额为:"+money_all_str)money_real = int(money_all)m 阅读全文
posted @ 2021-09-13 21:52 doublemiracle 阅读(11) 评论(0) 推荐(0) 编辑
摘要: print("请输入父亲的身高:")father_height=input()print("请输入母亲的身高:")mother_height=input()son_height=(float(father_height)+float(mother_height))*0.54print("预测儿子身高 阅读全文
posted @ 2021-09-05 19:36 doublemiracle 阅读(53) 评论(0) 推荐(0) 编辑
摘要: print("欢迎使用XXX充值业务,请输入充值金额:")jiage=input()print("充值成功,您本次充值"+ str(jiage)+ "元") 阅读全文
posted @ 2021-09-05 19:34 doublemiracle 阅读(18) 评论(0) 推荐(0) 编辑