
情感表达
以python为编程语言,利用python中的桌面界面开发相关库开发情感表白的娱乐小程序,既提高编程能力,又实现情感表达。
图灵追慕者
IT公司从事人工智能研究的高级技术经理。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
3.基于seaborn的画图表白
# coding: utf-8import matplotlib.pyplot as pltimport seabornimport numpyl = numpy.arange(0, 4, 0.01)L = 1.0 / ltheta = numpy.arange(-4, 4, 0.01)o = 3.0 * numpy.cos(theta)O = 3.0 * numpy.sin(theta)v = numpy.arange(-4, 4, 0.01)V = numpy.abs(-..原创 2020-07-12 13:40:48 · 189 阅读 · 0 评论 -
2.图片上打印表白话语
程序功能说明:在照片上写满爱的话语——预祝520表白成功!# python2叫PIL图像库,python3中PIL指的是pillow库from PIL import Image, ImageDraw, ImageFontfont_size = 16text = "你最美!"input_img_path = "gf1.jpg"output_img_path = "gfLove.jpg"img_raw = Image.open(input_img_path)img_array = img原创 2020-07-12 09:10:44 · 280 阅读 · 0 评论 -
1.表白示爱小程序
# 在终端打印I Love U 的表白小程序,纯属娱乐def Heart_Plot(): y = 2.5 while y >= -1.6: y = y - 0.2 x = -3.6 one_floor = "" while x <= 4.8: if (x*x + y*y -1)**3 <= 3.6*x*x*y*y*y \ or (y >-1 a..原创 2020-07-10 12:59:47 · 1252 阅读 · 0 评论