8.3.1.返回简单值 #接受名和姓并返回整洁的姓名 def get_formatted_name(first_name,last_name): """返回整洁的姓名""" full_name=first_name+' '+last_name return full_name.title() mus ...
分类:
其他好文 时间:
2021-01-18 11:21:56
阅读次数:
0
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.d ...
分类:
其他好文 时间:
2021-01-18 11:20:24
阅读次数:
0
一、getchar()和cin.get() getchar()会将开头的空格或者回车作为输入 1 #include<iostream> 2 using namespace std; 3 int main(){ 4 char ch1 = getchar(); 5 char ch2 = getchar( ...
分类:
其他好文 时间:
2021-01-18 11:19:13
阅读次数:
0
对结构体排序 ''' #include<iostream> #include<algorithm> using namespace std; const int si= 101; struct segment { int l, r; bool operator < (const segment v) ...
分类:
编程语言 时间:
2021-01-18 11:05:01
阅读次数:
0
call()、apply()、bind() 都是用来重定义 this 这个对象的 bind 返回的是一个新的函数,必须调用它才会被执行 var name = 'rannie', age = 17; var obj={ name: 'coolin', objage: this.age, muFun: ...
分类:
移动开发 时间:
2021-01-18 10:47:36
阅读次数:
0
参考代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>路由简 ...
分类:
其他好文 时间:
2021-01-18 10:45:52
阅读次数:
0
Docker的安装 安装文档 doc Ubuntu下的安装 安装环境 NAME="Ubuntu" VERSION="18.04.4 LTS (Bionic Beaver)" ID=ubuntu ID_LIKE=debian PRETTY_NAME="Ubuntu 18.04.4 LTS" VERSI ...
分类:
系统相关 时间:
2021-01-18 10:42:51
阅读次数:
0
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;#脚本文件请求的路径 fastcgi_param QUERY_STRING $query_string; #请求的参数;如?app=123 fastcgi_param R ...
分类:
其他好文 时间:
2021-01-18 10:38:12
阅读次数:
0
安装软件包: rpm -ivh name.rpm 删除软件包: rpm -e name.rpm 查看软件包是否被安装: rpm -qa name.rpm 查看这个包安装了哪些文件: rpm -ql name.rpm 查看文件(或命令)是由哪个包来的: rpm -qf name.rpm 自动解决依赖关 ...
分类:
其他好文 时间:
2021-01-18 10:35:37
阅读次数:
0
含义: LEN 函数返回文本字段中值的长度。 返回字符表达式中的字符数 SQL LEN() 语法 SELECT LEN(column_name) FROM table_name 举例: 1、LEN对相同的单字节和双字节字符串返回相同的值,如汉字、英文、符号。 注意:LEN函数在对待英文字符和汉字字符 ...
分类:
数据库 时间:
2021-01-16 12:16:20
阅读次数:
0