python
-
python print 输出格式化的几种方式
# 对浮点数,保留小数点后几位 print(‘{:0.3f}’.format(50.5 / 220.5)) # print 格式化字符串 num = int(input(‘请输入一…
-
python使用装饰器时带括号与不带括号的区别 | 装饰
带括号如下代码 func_dic = {} def make(name): def demo(func): func_dic[name] = func return demo @m…
-
基于python的数学建模—logicstic回归
樱花数据集的Logistic回归 绘制散点图 import matplotlib.pyplot as plt import numpy as np from sklear…
-
python 时间戳装饰器
点击查看代码 import time from functools import wraps def timer(func): @wraps(func) def inner(*ar…
-
python文件上传
前端代码: html <input id=”fileUpload” type=”file” name=”upload”> <input type=”butto…
-
Mac安装python jupyter notebook
前置条件:已安装python3查看当前python版本:python –version如果不使用虚拟环境,直接用步骤3和步骤4即可。1. 创建虚拟环境:pip3 ins…
-
python 使用正则表达式截取字符串
假设字符串“a= {};”要截取包含花括号在内的内容 import re pattern= r= “= (.+?);” match_bet_list=eval(re.findall…
-
python-%格式化输出
输出 输出使用的是print()函数,作用,将程序中的数据或结果打印到控制台(屏幕) print(‘hello world’) name = ‘…
-
python switch 替换if else
1,python 解释器版本3.10以上可以使用如下 def dar(darling): match darling: case ‘400’: print(400) case ‘4…
-
Python小游戏——外星人入侵(保姆级教程)第一章 05
系列文章目录 第一章:武装飞船 05:重构:模块game_functions 一、重构 在大型项目中,经常需要在添加新代码前重构既有代码。重构旨在简化既有代码的结构,使其更容易扩展…