Python
Python学习
K2I-
Nothing is impossible!
展开
-
Hopfield网络的设计与实现
Hopfield网络的设计与实现反馈神经网络,Hopfield网络,DHNN,Python。通过Python编程,使用Hebb学习方法计算DHNN的权重参数;通过Python编程,使用同步方法迭代DHNN,获取最终网络稳定状态实验步骤1,导入必要的函数库2. 设计一个DHNN,激活函数使用符号函数3. 将两幅灰度图片(1.png和2.png)转换为二值向量作为两个模式保存到DHNN4. 使用外积法(Hebb学习规则)设计网络的权重参数,5. 用异步迭代法,计算当输入一个全1向量时,网络的最原创 2021-10-12 15:10:41 · 819 阅读 · 0 评论 -
机器学习数据预处理规范化两种常用方法
机器学习数据预处理规范化两种常用方法**1,Z-score(Z-分数规范化)**先导入numpy和sklearn库,从sklearn库中导入预处理preprocessingimport numpy as npfrom sklearn import preprocessingX_train = np.array([[ 1., -1., 2.],[ 2., 0., 0.],[ 0., 1., -1.]])x=preprocessing.scale(X_train)print(x)*原创 2021-10-11 08:56:10 · 436 阅读 · 1 评论 -
Python爬去虎牙直播
import requestsfrom lxml import etreefrom urllib import requesturl = "https://www.huya.com/g/4079"headers = { 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1 Safari/605.1.15'}.原创 2021-10-09 19:50:23 · 247 阅读 · 0 评论 -
Python字典的使用
字典的使用phone = input("请输入电话...")mapping = { "1": "one", "2": "two", "3": "three", "4": "four", "5": "five", "6": "six", "7": "seven"}output = ""for ch in phone: output += mapping.get(ch, ch) + " "print(output)...原创 2021-10-09 19:48:06 · 74 阅读 · 0 评论 -
Python输入圆的半径求面积
#设计一程序,从键盘读入圆的半径值,输出面积。import mathprint("请输入圆的半径值:")r = float(input())s = float(math.pi*r*r)print(s)原创 2021-10-09 19:46:13 · 8249 阅读 · 0 评论 -
Python求两数之和
#.设计一程序,从键盘读入两个数值,例如23和57,然后输出它们的合80。print("请从键盘上输入两个数:");a= int(input())b = int(input())sum = a+bprint(sum)原创 2021-10-09 19:45:00 · 11006 阅读 · 0 评论 -
使用通配符* 绘制等边三角形(Python)
Python 绘制等边三角形,使用通配符*from turtle import *pencolor(“red”)penup()fd(-250)pd()pensize(5)fd(200)seth(120)fd(200)seth(60)fd(-200)seth(120)原创 2020-11-29 15:11:54 · 391 阅读 · 0 评论 -
Python绘制等边三角形,使用turtle库中turtle.fd( )函数和turtle.seth( )
Python绘制等边三角形,使用turtle库中turtle.fd( )函数和turtle.seth( )import turtleturtle.pencolor(“red”)turtle.penup()turtle.fd(-250)turtle.pd()turtle.pensize(5)turtle.fd(200)turtle.seth(120)turtle.fd(200)turtle.seth(60)turtle.fd(-200)turtle.seth(120)...原创 2020-11-29 14:59:47 · 28623 阅读 · 0 评论 -
Python绘制一条彩色蟒蛇(两种常规的方法)
Python绘制一条彩色蟒蛇,每个小段,画笔的颜色发生变化方法一:import turtlea=[‘purple’,‘red’,‘yellow’,‘pink’]turtle.setup(650, 350, 200, 200)turtle.penup()turtle.fd(-250)turtle.pendown()turtle.pensize(25)turtle.seth(-40)for i in range(4):turtle.pencolor(a[i])turtle.circle(原创 2020-11-29 14:27:25 · 32711 阅读 · 2 评论 -
函数封装的Python蟒蛇绘制程序
函数封装的Python蟒蛇绘制程序import turtledef drawSnake(radius, angle, length):turtle.seth(-40)for i in range(length):turtle.circle(radius, angle)turtle.circle(-radius, angle)turtle.circle(radius, angle/2)turtle.fd(40)turtle.circle(16, 180)turtle.fd(40* 2/3)原创 2020-11-29 10:55:11 · 780 阅读 · 0 评论 -
Python绘制蟒蛇,调用turtle库函数,不使用库名,直接使用<函数名>(<函数参数>)
Python绘制蟒蛇,调用turtle库函数,引用from <库名> import * #*是通配符,表示所有函数不使用库名,直接使用<函数名>(<函数参数>)from turtle import *setup(650, 350, 200, 200)penup()fd(-250)pendown()pensize(25)pencolor(“purple”)seth(-40)for i in range(4):circle(40, 80)ci原创 2020-11-29 10:53:27 · 301 阅读 · 0 评论 -
Python绘制太阳花(初学者)
Python绘制太阳花from turtle import *color(‘red’, ‘yellow’)begin_fill()while True:forward(200)left(170)if abs(pos()) < 1:breakend_fill()done()原创 2020-11-29 10:35:15 · 2552 阅读 · 0 评论 -
Python绘制五角星
Python绘制五角星from turtle import *fillcolor(“red”)begin_fill()while True:forward(200)right(144)if abs(pos()) < 1:breakend_fill()原创 2020-11-29 10:33:52 · 359 阅读 · 0 评论 -
python实现同心圆的绘制
python实现同心圆的绘制:import turtle #引用turtle库turtle.pensize(2) #设置画笔宽度为2像素turtle.circle(1) #设置圆的半径1像素turtle.circle(2) #设置圆的半径2像素turtle.circle(4)turtle.circle(6)turtle.circle(8)turtle.circle(10)...原创 2020-11-24 20:08:02 · 3288 阅读 · 1 评论 -
python斐波那契数列数列的计算
python斐波那契数列数列的计算a,b=0,1while a<1000:print(a,end=’ , ')a,b=b,a+b原创 2020-11-24 20:03:43 · 376 阅读 · 0 评论