目标 格式化输出 格式化符号 f-字符串 print的结束符 输出 作用:程序输出内容给用户 print('hello Python') age = 18 print(age) # 需求:输出“今年我的年龄是18岁” 一. 格式化输出 所谓的格式化输出即按照一定的格式输出内容。 1.1 格式化符号 ...
分类:
其他好文 时间:
2021-06-21 20:50:55
阅读次数:
0
父组件: 子组件 孙子组件 页面展示 解决方案 ...
分类:
其他好文 时间:
2021-06-21 20:50:06
阅读次数:
0
MySQL 查询时,报如下错:Query execution was interrupted, maximum statement execution time exceeded 查询数据库最大语句执行时间,默认为10s,单位是毫秒 SELECT @@global.max_execution_tim ...
分类:
数据库 时间:
2021-06-21 20:46:21
阅读次数:
0
目前安装vCenter Server Appliance 6.5客户原来越多,给用户配置过程中,往往会忽略默认的root 密码策略:60天过期。一旦密码过期或忘记密码,vcsa的管理控制台就无法通过root登录。 以下是参考官方KB 方法修改忘记或过期的root密码。 1. 请先生成 vCenter ...
分类:
移动开发 时间:
2021-06-21 20:42:14
阅读次数:
0
字符串加密 描述 用户在一行中输入一个包括大小写字母和数字的字符串,编程将其中的大写字母用该字母后的第4个字母替代,其他字符原样输出,实现字符串加密。??????????????????????????????????????????????????????????????????????????? ...
分类:
编程语言 时间:
2021-06-21 20:41:59
阅读次数:
0
VUe2.0 和 Vue3.0 的生命周期作对比 beforeCreate -> 请使用 setup() created -> 请使用 setup() beforeMount -> onBeforeMount mounted -> onMounted beforeUpdate -> onBefore ...
分类:
其他好文 时间:
2021-06-21 20:37:32
阅读次数:
0
前言 我总是在git提交的时候,遇到一些奇奇怪怪的问题。有时候居然还会碰上第二次。 记住这些“绊脚石”,下回不摔跤。 目录 git index损坏 一、git index损坏 报错信息:D:\Fanniegirl>git status error: bad signature 0x00000000 ...
分类:
其他好文 时间:
2021-06-21 20:37:13
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #define OK 1 #define Error 0 typedef int Status; //栈 typedef struct StackNode { int data; struct StackNode *next; ...
分类:
其他好文 时间:
2021-06-21 20:35:07
阅读次数:
0
#include<stdlib.h> #include<stdio.h> #include<string.h> #define MAX 10005 typedef struct node { char a[16]; int len; }node; node te,t[MAX]; int n=0; v ...
分类:
其他好文 时间:
2021-06-21 20:33:31
阅读次数:
0
算法思想 冒泡排序属于一种典型的交换排序。 交换排序顾名思义就是通过元素的两两比较,判断是否符合要求,如过不符合就交换位置来达到排序的目的。冒泡排序名字的由来就是因为在交换过程中,类似水冒泡,小(大)的元素经过不断的交换由水底慢慢的浮到水的顶端。 冒泡排序的思想就是利用的比较交换,利用循环将第 i ...
分类:
编程语言 时间:
2021-06-21 20:30:56
阅读次数:
0