【附源码】六个Python表白小代码,送给心爱的她,让她高兴一整天~

news2024/9/26 5:15:28

话说明天就是七夕了,买礼物了吗?

什么?居然还没买礼物,那这个代码正好送给你,六个Python爱心表白代码,让她高兴一整天!

话不多说,咱直接上代码!

1、紫色爱心

先看效果


代码

#1-1导入turtle模块进行设计
import turtle
import time
 
#1-2画心形圆弧
def hart_arc():
    for i in range(200):
        turtle.right(1)
        turtle.forward(2)
 
 
def move_pen_position(x, y):
    turtle.hideturtle()  # 隐藏画笔(先)
    turtle.up()  # 提笔
    turtle.goto(x, y)  # 移动画笔到指定起始坐标(窗口中心为0,0)
    turtle.down()  # 下笔
    turtle.showturtle()  # 显示画笔
 
 
love = "听闻小姐治家有方,鄙人余生愿闻其详?" #input("请输入表白话语:")
signature = "先生" #input("请签署你的名字:")
date= "" #input("请写上日期:")
 
if love == '':
    love = 'I Love You'
 
#1-3初始化
turtle.setup(width=800, height=500)  # 窗口(画布)大小
turtle.color('black', 'Pink')  # 画笔颜色
turtle.pensize(5)  # 画笔粗细
turtle.speed(100)  # 描绘速度
# 初始化画笔起始坐标
move_pen_position(x=0, y=-180)  # 移动画笔位
turtle.left(140)  # 向左旋转140度
 
turtle.begin_fill()  # 标记背景填充位置
 
#1-4画图和展示
turtle.forward(224)  # 向前移动画笔,长度为224
# 画爱心圆弧
hart_arc()  # 左侧圆弧
turtle.left(120)  # 调整画笔角度
hart_arc()  # 右侧圆弧
# 画心形直线( 右下方 )
turtle.forward(224)
 
turtle.end_fill()  # 标记背景填充结束位置
 
move_pen_position(x=70, y=160)  # 移动画笔位置
turtle.left(185)  # 向左旋转180度
turtle.circle(-110,185)  # 右侧圆弧
# 画心形直线( 右下方 )
#turtle.left(20)  # 向左旋转180度
turtle.forward(50)
move_pen_position(x=-180, y=-180)  # 移动画笔位置
turtle.left(180)  # 向左旋转140度
 
# 画心形直线( 左下方 )
turtle.forward(600)  # 向前移动画笔,长度为224
 
# 在心形中写上表白话语
move_pen_position(0,50)  # 表白语位置
turtle.hideturtle()  # 隐藏画笔
turtle.color('#CD5C5C', 'pink')  # 字体颜色
# font:设定字体、尺寸(电脑下存在的字体都可设置)  align:中心对齐
turtle.write(love, font=('Arial', 20, 'bold'), align="center")
 
# 签写署名和日期
if (signature != '') & (date != ''):
    turtle.color('red', 'pink')
    time.sleep(2)
    move_pen_position(220, -180)
    turtle.hideturtle()  # 隐藏画笔
    turtle.write(signature, font=('Arial', 20), align="center")
    move_pen_position(220, -220)
    turtle.hideturtle()  # 隐藏画笔
    turtle.write(date, font=('Arial', 20), align="center")
 
#1-5点击窗口关闭程序
window = turtle.Screen()
window.exitonclick()

2、love2 ilove you

效果展示

代码展示

import turtle as t
import math as mt

if __name__ == "__main__":
    t.screensize(800,600,'white')
    t.pensize(10)
    t.speed(10)
    #爱心1
    t.color('black','pink')
    t.begin_fill()
    for i in range(-90,90,5):
        x=mt.cos(mt.radians(i))
        y=float(pow(mt.cos(mt.radians(i)),2/3))+float(mt.sin(mt.radians(i)))
        t.penup()
        # print(int(x*50)+10,int(y*50)+10)
        t.goto(int(x*50)+50,int(y*50)+30)
        t.pendown()
        t.forward(1)
        t.penup()
        t.goto(-int(x*50)+50,int(y*50)+30)
        t.pendown()
        t.forward(1)
        t.penup()
    t.end_fill()
    #爱心2
    t.goto(0,10)
    t.penup()
    t.begin_fill()
    for i in range(0,360,5):
        r=60*(1-mt.sin(mt.radians(i)))
        t.penup()
        t.left(5)
        t.forward(r)
        t.pendown()
        t.forward(1)
        t.penup()
        t.backward(r+1)
        t.pendown()
    t.end_fill()
    #L
    t.penup()
    t.goto(-200,0)
    t.left(90)
    t.begin_fill()
    t.pendown()
    t.forward(100)
    t.right(90)
    t.forward(20)
    t.right(90)
    t.forward(80)
    t.left(90)
    t.forward(40)
    t.right(90)
    t.forward(20)
    t.right(90)
    t.forward(60)
    t.end_fill()
    #o
    t.penup()
    t.goto(-80,0)
    t.pendown()
    t.begin_fill()
    t.circle(-50)
    t.end_fill()
    t.penup()
    t.color('pink','black')
    t.begin_fill()
    t.goto(-80,20)
    t.pendown()
    t.circle(-30)
    t.end_fill()
    t.color('black','pink')
    #E
    t.penup()
    t.goto(120, 0)
    t.right(180)
    t.left(90)
    t.begin_fill()
    t.pendown()
    t.forward(100)#上
    t.right(90)
    t.forward(60)#横
    t.right(90)
    t.forward(20)#竖
    t.right(90)
    t.forward(40)#横
    t.left(90)
    t.forward(20)#竖
    t.left(90)
    t.forward(40)#横
    t.right(90)
    t.forward(20)
    t.right(90)
    t.forward(40)
    t.left(90)
    t.forward(20)
    t.left(90)
    t.forward(40)
    t.right(90)
    t.forward(20)
    t.right(90)
    t.forward(60)
    t.end_fill()

    t.mainloop()

3、红色爱心

效果展示

代码展示

import turtle as t





def face(x, y):           #脸

    t.setheading(-90)

    t.penup()

    t.goto(x, y)

    t.pendown()

    t.backward(15)   # 左脸

    t.circle(70,-80)



    t.setheading(80)   # 左耳

    t.circle(-150, 15)

    t.circle(-15, 180)

    t.setheading(-115)

    t.circle(-150, 13)

    t.setheading(10)



    t.circle(-100,10)



    t.setheading(70)    # 右耳

    t.circle(-150, 20)

    t.circle(-15, 180)

    t.circle(-150, 16)

    t.setheading(10)



    t.setheading(160)   # 右脸

    t.circle(60, -130)



    t.setheading(-75)

    t.forward(40)



def word(x, y):             # “如何骗人”

    t.pensize(2)

    t.pencolor("black")

    t.setheading(0)

    t.penup()

    t.goto(x, y)

    t.pendown()



    t.forward(10)   # “如”

    t.penup()

    t.setheading(90)

    t.forward(8)

    t.pendown()

    t.setheading(-120)

    t.forward(15)

    t.setheading(-45)

    t.forward(12)



    t.penup()

    t.setheading(80)

    t.forward(15)

    t.pendown()

    t.setheading(-125)

    t.forward(16)



    t.penup()

    t.setheading(42)

    t.forward(16)

    t.pendown()

    t.setheading(-90)

    t.forward(10)

    t.penup()

    t.backward(11)

    t.pendown()

    t.setheading(0)

    t.forward(8)

    t.setheading(-90)

    t.forward(10)

    t.penup()

    t.setheading(180)

    t.forward(8)

    t.pendown()

    t.setheading(0)

    t.forward(8)



    t.penup()        # “何”

    t.goto(x+7,y-18)

    t.pendown()

    t.setheading(-135)

    t.forward(13)



    t.penup()

    t.goto(x+5, y - 20)

    t.pendown()

    t.setheading(-90)

    t.forward(16)



    t.penup()

    t.goto(x+11, y-18)

    t.pendown()

    t.setheading(0)

    t.forward(13)



    t.penup()

    t.goto(x+12, y-22)

    t.pendown()

    t.setheading(-90)

    t.forward(8)



    t.penup()

    t.goto(x + 12, y - 22)

    t.pendown()

    t.setheading(0)

    t.forward(6)

    t.setheading(-90)

    t.forward(8)



    t.penup()

    t.goto(x + 11, y - 31)

    t.pendown()

    t.setheading(0)

    t.forward(6)



    t.penup()

    t.goto(x + 21, y - 19)

    t.pendown()

    t.setheading(-90)

    t.forward(18)

    t.setheading(145)

    t.forward(5)



    t.penup()           # “骗”

    t.goto(x + 40, y+3)

    t.pendown()

    t.setheading(0)

    t.forward(10)

    t.setheading(-90)

    t.forward(7)



    t.penup()

    t.goto(x + 45, y + 3)

    t.pendown()

    t.setheading(-90)

    t.forward(10)

    t.setheading(0)

    t.forward(7)

    t.setheading(-100)

    t.forward(10)

    t.setheading(145)

    t.forward(4)



    t.penup()

    t.goto(x+38, y-12)

    t.pendown()

    t.setheading(0)

    t.forward(11)



    t.penup()

    t.goto(x+57, y+9)

    t.pendown()

    t.setheading(-45)

    t.forward(4)



    t.penup()

    t.goto(x+54, y+3)

    t.pendown()

    t.setheading(0)

    t.forward(13)

    t.setheading(-90)

    t.forward(5)

    t.setheading(180)

    t.forward(12)



    t.penup()

    t.goto(x + 54, y + 3)

    t.pendown()

    t.setheading(90)

    t.circle(90,-10)



    t.penup()

    t.goto(x + 56, y-5)

    t.pendown()

    t.setheading(-90)

    t.forward(11)



    t.penup()

    t.goto(x + 56, y - 5)

    t.pendown()

    t.setheading(0)

    t.forward(13)

    t.setheading(-90)

    t.forward(12)

    t.setheading(145)

    t.forward(4)



    t.penup()

    t.goto(x + 56, y - 10)

    t.pendown()

    t.setheading(0)

    t.forward(13)



    t.penup()

    t.goto(x + 56, y - 10)

    t.pendown()

    t.setheading(0)

    t.forward(13)



    t.penup()

    t.goto(x + 60, y - 4)

    t.pendown()

    t.setheading(-90)

    t.forward(10)

    t.penup()

    t.goto(x + 64, y - 4)

    t.pendown()

    t.setheading(-90)

    t.forward(10)



    t.penup()          # “人”

    t.goto(x + 60, y - 19)

    t.pendown()

    t.setheading(70)

    t.circle(50, -30)



    t.penup()

    t.goto(x + 56, y - 27)

    t.pendown()

    t.setheading(130)

    t.circle(-50, -20)



def book(x,y):           #书

    t.setheading(-90)

    t.penup()

    t.goto(x, y)

    t.fillcolor("red")

    t.begin_fill()

    t.pendown()

    t.forward(60)

    t.setheading(0)

    t.circle(-100, 25)

    t.setheading(90)

    t.forward(59)

    t.setheading(-25)

    t.circle(-100, -25)

    t.penup()

    t.setheading(-14)

    t.forward(46)

    t.pendown()

    t.setheading(15)

    t.circle(-100, 25)

    t.setheading(-90)

    t.forward(58)

    t.setheading(-11)

    t.circle(-105, -25)

    t.end_fill()



def eyes(x, y):         # 五官

    t.setheading(-20)

    t.penup()

    t.goto(x, y)

    t.pendown()

    t.forward(10)



    t.setheading(0)

    t.penup()

    t.forward(10)

    t.pendown()

    t.setheading(20)

    t.forward(10)



    t.setheading(-160)

    t.penup()

    t.forward(50)

    t.pendown()

    t.setheading(0)

    t.forward(15)



    t.penup()

    t.forward(25)

    t.pendown()

    t.forward(18)



    t.setheading(-145)

    t.penup()

    t.forward(45)

    t.pendown()

    t.setheading(0)

    t.forward(10)



def cheek(x, y):          #腮红

    t.setheading(0)

    for i in range(1, 4):

        t.color("pink")

        t.pensize(4)

        t.penup()

        t.right(110)

        t.goto(x, y)

        t.pendown()

        t.forward(9)

        t.left(110)

        x += 9

    t.pencolor("black")



def hands(x,y):     # 小手手

    t.penup()

    t.goto(x, y)

    t.pendown()



    t.fillcolor("white")

    t.begin_fill()

    t.circle(10)

    t.end_fill()



    t.penup()

    t.setheading(5)

    t.forward(120)

    t.pendown()

    t.fillcolor("white")

    t.begin_fill()

    t.setheading(-165)

    t.forward(35)

    t.circle(10,180)

    t.forward(15)

    t.end_fill()





def heart(x,y,z):      # 爱心

    t.setheading(110)

    t.pensize(2)

    t.pencolor("black")

    t.penup()

    t.goto(x,y)

    t.pendown()

    t.fillcolor("red")



    t.begin_fill()     #左半边



    t.circle(50,180)

    t.circle(180,37)



    t.left(46)      #右半边

    t.circle(180,37)

    t.circle(50, 182)



    t.end_fill()



def main():

    """

        主函数

    """

    t.pensize(0)

    t.speed(6)

    face(-95, 55)

    eyes(-45, 110)

    cheek(-80, 80)

    cheek(0, 80)

    book(-110, 55)

    hands(-110,5)

    word(-100,35)

    heart(150,0,1)

    t.hideturtle()

    t.exitonclick()

if __name__ == "__main__":

    main()

4、嗯

很多小伙伴在学习的过程中因为没有好的学习资料或者学习的路上没有人指导,导致学习进度一慢再慢,遇到问题半天得不到解决,就很打击自己学学习信心。

在这里小编准备了这些资料,都打包好了,直接文末名片自取。

  • Python+pycharm安装包、安装使用教程,pycharm永久使用码。
  • Python基础100集
  • Python爬虫实战
  • Python数据分析
  • Python开发实战
  • Python电子书(数百本)
  • Python超详细学习路线图

就不全部截图了,尽在文末名片

5、一箭穿心

来看看效果

所有代码

import turtle as t

t.color('white','red')

t.begin_fill()

t.width(5)

t.left(135)

t.fd(100)

t.right(180)

t.circle(50,-180)

t.left(90)

t.circle(50,-180)

t.right(180)

t.fd(100)

t.pu()

t.goto(50,-30)

t.pd()

t.right(90)

t.fd(100)

t.right(180)

t.circle(50,-180)

t.left(90)

t.circle(50,-180)

t.right(180)

t.fd(100)

t.end_fill()

t.hideturtle()

t.pu()

t.goto(250,-70)

t.pd()

t.color('black')

t.width(5)

t.left(70)

t.fd(50)

t.fd(-50)

t.left(70)

t.fd(50)

t.fd(-50)

t.left(145)

t.fd(20)

t.left(145)

t.fd(50)

t.fd(-50)

t.left(70)

t.fd(50)

t.fd(-50)

t.left(145)

t.fd(20)

t.left(145)

t.fd(50)

t.fd(-50)

t.left(70)

t.fd(50)

t.fd(-50)

t.left(145)

t.width(3)

t.fd(220)

t.right(90)

t.pu()

t.fd(10)

t.pd()

t.left(90)

t.circle(10,180)

t.circle(10,-90)

t.right(90)

t.fd(-10)

t.pu()

t.fd(90)

t.left(90)

t.fd(10)

t.left(90)

t.pd()

t.circle(10,180)

t.circle(10,-90)

t.left(90)

t.fd(100)

t.begin_fill()

t.left(30)

t.fd(15)

t.right(35)

t.fd(50)

t.right(150)

t.fd(50)

t.right(62)

t.fd(25)

t.end_fill()

t.done()

6、一箭穿心文字版

效果展示

代码展示

from turtle import *
import turtle
from tkinter import *
import subprocess
import os
import random as ran


def Circlemove(size):
    for i in range(200):
        right(1)
        forward(1 * size)


def Heart(x, y, size):
    setturtle(x, y)
    speed(0.6)
    color('red', 'pink')
    begin_fill()
    left(140)
    forward(111.65 * size)
    Circlemove(size)
    left(120)
    Circlemove(size)
    forward(111.65 * size)
    end_fill()
    penup()


def setturtle(x, y):
    penup()
    goto(x, y)
    pendown()


def Line():
    speed(0.6)
    pensize(10)
    setheading(0)
    setturtle(-300, 0)
    left(12)
    forward(210)
    setturtle(80, 80)
    forward(150)


def LineHead():
    pensize(1)
    speed(0.5)
    color('red', 'red')
    begin_fill()
    left(120)
    forward(20)
    right(150)
    forward(35)
    right(120)
    forward(35)
    right(150)
    forward(20)
    end_fill()


def SavePicture():
    ts = getscreen()
    ts.getcanvas().postscript(file="520.ps", colormode='color')
    window = turtle.Screen()
    window.exitonclick()


def main():
    Love_Words = ["我喜欢的样子,你都有。"]
    Love_Letter = ["有你陪伴的日子,真好。", "遇见你,此生甚幸。"]
    Random_Number = ran.randint(0, len(Love_Words) - 1)
    setup(800, 600, 0, 0)
    getscreen().tracer(30, 0)
    hideturtle()
    pensize(3)
    color('black', 'pink')
    Heart(0, -25, 0.75)
    home()
    Heart(-80, -50, 1)
    Line()
    LineHead()
    pencolor("purple")
    speed(0.6)
    j = 0
    for i in Love_Words[Random_Number]:
        j = j + 1
        setturtle(j * 25 - 250, -150 + ran.randint(-1, 1) * 7)
        write(i, font=("楷体", 25, "normal"))
    j = 0
    pencolor("purple")
    for i in Love_Letter:
        j = j + 1
        setturtle(-400, 275 - j * 27)
        write(i, font=("楷体", 25, "normal"))
    pencolor('black')
    SavePicture()


if __name__ == '__main__':
    main()

7、一行代码画爱心

效果展示

全部代码


print('\n'.join([''.join([('Love'[(x-y) % len('Love')] if ((x*0.05)**2+(y*0.1)**2-1)**3-(x*0.05)**2*(y*0.1)**3 <= 0 else ' ') for x in range(-30, 30)]) for y in range(30, -30, -1)]))

好了,以上就是今天的分享,大家赶紧拿去试试吧,祝各位表白成功!

觉得好用的话,记得点赞收藏,让更多的人表白成功!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/907376.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

K8s学习笔记4

场景&#xff1a; 项目研发部门最近要进行应用运行基础环境迁移&#xff0c;需要由原先的虚拟机环境迁移到K8s集群环境中&#xff0c;以便应对开发快速部署和快速测试的需要&#xff0c;因此&#xff0c;需要准备一套可以用于开发需求的K8s集群&#xff0c;但是对于仅有容器基…

YOLO目标检测——MNIST手写数字数据集下载分享

MNIST手写数字图像数据集是一个经典的用于图像分类任务的数据集&#xff0c;其中包含了大量的手写数字图像样本 数据集点击下载&#xff1a; MNIST手写数字数据集7000张图片.rar

使用Xshell7控制多台服务同时安装ZK最新版集群服务

一: 环境准备: 主机名称 主机IP 节点 (集群内通讯端口|选举leader|cline端提供服务)端口 docker0 192.168.1.100 node-0 2888 | 3888 | 2181 docker1 192.168.1.101 node-1 2888 | 388…

元核云私募双录助力私募基金业务高效合规

近年来&#xff0c;私募基金监管政策不断收紧&#xff0c;今年7月发布的《私募投资基金监督管理条例》更是把私募投资基金业务活动纳入法治化、规范化轨道进行监管。 作为保障私募基金业务透明合规的重要手段&#xff0c;“双录”一直是私募流程中非常重要的一环&#xff0c;多…

图像降采样的计算原理:F.interpolate INTER_AREA

一、F.interpolate——数组采样操作 torch.nn.functional.interpolate(input, size=None, scale_factor=None, mode=nearest, align_corners=None, recompute_scale_factor=None) 功能:利用插值方法,对输入的张量数组进行上\下采样操作,换句话说就是科学合理地改变数组的尺…

华为云开发工具CodeArts IDE for C/C++ 开发使用指南

简介 CodeArts IDE是一个集成开发环境&#xff08;IDE&#xff09;&#xff0c;它提供了开发语言和调试服务。本文主要介绍CodeArts IDE for C/C的基本功能。 1.下载安装 CodeArts IDE for C/C 已开放公测&#xff0c;下载获取免费体验 2.新建C/C工程 CodeArts IDE for C/…

春秋云境:CVE-2022-0543(Redis 沙盒逃逸漏洞)

目录 一、i春秋题目 二、CVE-2022-0543&#xff1a;&#xff08;redis沙盒逃逸&#xff09; 漏洞介绍&#xff1a; 漏洞复现&#xff1a; 一、i春秋题目 靶标介绍&#xff1a; Redis 存在代码注入漏洞&#xff0c;攻击者可利用该漏洞远程执行代码。 进入题目&#xff1a;…

数字孪生技术应用:智能制造、城市规划与更多

数字孪生可以用在哪些场景下&#xff1f;这个问题引发了无数创新思考和应用探索。随着科技的不断进步&#xff0c;数字孪生技术正逐渐展现出其广泛的应用前景&#xff0c;不仅在工业制造&#xff0c;还在城市规划、农业等多个领域呈现出独特的价值。 在工业制造领域&#xff0…

jenkins的安装和配置(flask结合jenkins半自动化部署流程)

jenkins在虚拟机中安装 1.1 背景介绍 Jenkins 是一款流行的开源持续集成&#xff08;Continuous Integration&#xff09;工具&#xff0c;广泛用于项目开发&#xff0c;具有自动化构建、测试和部署等功能。 Jenkins官网&#xff1a; Jenkins Jenkins 特征 开源的Java语言开发…

无涯教程-PHP - 静态变量函数

静态变量 静态变量在函数退出时值不会丢失,您只需将关键字STATIC放在变量名称的前面,即可将变量声明为静态变量。 <?phpfunction keep_track() {STATIC $count0;$count;print $count;print "<br />";}keep_track();keep_track();keep_track(); ?> 这…

openstack安装使用(Yoga版本)

演示具体只体现centos配置&#xff0c;至于Ubuntu和SUSE&#xff0c;请移步官方文档 安装指南 官方网址&#xff1a;https://docs.openstack.org/install-guide/common/conventions.html $ command #任何用户&#xff08;包括root用户&#xff09;都可以运行以提示符为前缀的…

测试框架pytest教程(6)钩子函数hook

在pytest中&#xff0c;"hook"是用于自定义和扩展测试流程的机制。它允许你在特定时间点插入自己的代码&#xff0c;以便对测试进行修改、补充或拦截。 pytest的hook是基于Python的插件系统实现的&#xff0c;使用特定的命名规范和装饰器来定义钩子函数。你可以在py…

uniapp打包后开屏出现广告

最近的一次打包上线后&#xff0c;安卓端出现了开屏广告&#xff0c;这就比较离谱了&#xff0c;没有改啥&#xff0c;这广告来得莫名其妙&#xff0c;查阅了官方文档后&#xff0c;发现文档太老&#xff0c;也没有及时更新… 咱们在打包时&#xff0c;通常会发现广告这里的【开…

日产将使用东风纯电平台?官方回应:不是日产品牌

据财联社报道&#xff0c;日产中国在对于“日产将使用东风纯电平台”的传闻进行回应时指出&#xff0c;文中提及的平台将会用于日产在华合资企业的自主品牌&#xff0c;而不是日产品牌本身。这一消息进一步确认了之前每经网的报道&#xff0c;称日产将采用东风汽车最新发布的“…

C# OpenCvSharp DNN 二维码增强 超分辨率

效果 项目 代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using OpenCvSharp; using OpenCvSharp.Dnn; using OpenCvSh…

new String创建几个对象

在java17中 &#xff1a; 问题1&#xff1a;new String("abc")会产生多少个对象&#xff1f; 分两种情况&#xff1a; 情况1&#xff1a; 如果”abc”这个字符串常量不存在&#xff0c;则创建两个对象&#xff0c;分别是“abc”这个字符串常量&#xff0c;以及ne…

Linux Kernel 4.12 或将新增优化分析工具

到 7 月初&#xff0c;Linux Kernel 4.12 预计将为修复所有安全漏洞而奠定基础&#xff0c;另外新增的是一个分析工具&#xff0c;对于开发者优化启动时间时会有所帮助。 新的「个别任务统一模型」&#xff08;Per-Task Consistency Model&#xff09;为主要核心实时修补&#…

PPT操作技巧:如何对文档进行保护和加密

辛辛苦苦设计出的PPT&#xff0c;不希望呗别人拿去当“模板”&#xff1b; PPT中包含项目的关键内容或公司的重要信息&#xff0c;不希望泄露&#xff1b; …… 这些情况下&#xff0c;我们肯定需要找办法来保护自己的PPT。 小编今天就来跟大家分享几个实用的PPT加密保护技巧。…

怎么用gif合成将视频转gif?推荐使用这款视频转gif工具

想要将喜欢的视频片段转换成gif动态图&#xff0c;可以试试今天分享的这款视频转gif工具&#xff0c;支持视频在线转gif&#xff0c;无需下载多余gif合成&#xff08;https://www.gif.cn&#xff09;工具&#xff0c;赶紧来看看怎么操作的吧。 打开网站&#xff0c;在首页选择…

如何查看Linux内核版本

如何查看Linux内核版本 uname -r用centos7.0&#xff0c;内核版本就是3.10