摘要: 回文数:从左往右和从右往左读都一样。 num = int(input('请输入一个数字:')) if str(num) == str(num)[::-1]: print("该数字是回文数") else: print("该数字不是回文数") def isPalindrome(x): # 负数不是回文数 阅读全文
posted @ 2024-07-21 14:38 limalove 阅读(106) 评论(0) 推荐(0) 编辑
摘要: import turtle turtle.setup(800,600) turtle.speed(10) turtle.penup() turtle.goto(177, 112) turtle.pencolor("lightgray") turtle.pensize(3) turtle.fillco 阅读全文
posted @ 2024-07-21 08:44 limalove 阅读(46) 评论(0) 推荐(0) 编辑
摘要: import turtle from turtle import * #turtle.bgpic("xrr.png") pm=Screen() #新建屏幕对象 pm.delay (0) #设定屏幕延时为0 pm.title("雪容融") turtle.speed(3) # 速度 # 大头的圈圈 tu 阅读全文
posted @ 2024-07-21 08:42 limalove 阅读(9) 评论(0) 推荐(0) 编辑
摘要: from array import array import math import functools import itertools import operator import reprlib class Vector: typecode = 'd' def __init__(self, c 阅读全文
posted @ 2024-07-21 08:36 limalove 阅读(5) 评论(0) 推荐(0) 编辑
摘要: from array import array import math class Vector2d: __match_args__ = ('x', 'y') typecode = 'd' def __init__(self, x, y): self.__x = float(x) self.__y 阅读全文
posted @ 2024-07-21 08:36 limalove 阅读(5) 评论(0) 推荐(0) 编辑