搜索结果
查询Tags标签: input,共有 1530条记录-
今天星期几
需求: 获取用户输入,数字1-7其中一个,打印出对应的星期几。 如:用户输入1,打印出星期一思路:使用列表操作(切片、索引)input获取到的是字符串,需要用eval函数转换成数字 然后对weekStr做切片操作 weekStr = "星期一星期二星期三星期四星期五星期六星期日…
2021/8/8 6:07:20 人评论 次浏览 -
今天星期几
需求: 获取用户输入,数字1-7其中一个,打印出对应的星期几。 如:用户输入1,打印出星期一思路:使用列表操作(切片、索引)input获取到的是字符串,需要用eval函数转换成数字 然后对weekStr做切片操作 weekStr = "星期一星期二星期三星期四星期五星期六星期日…
2021/8/8 6:07:20 人评论 次浏览 -
数据库索引高频面试题:正则表达式学习之调用CLR函数执行正则查询(1)
Regex re = new Regex("(?<=\"UserID\":\").*?(?=\")", RegexOptions.IgnoreCase); MatchCollection mc = re.Matches(text_input); foreach(Match mt in mc) { //mt.Value}二,创建CLR工程---------我使用的IDE版本是VS2017 Enterpr…
2021/8/6 19:07:44 人评论 次浏览 -
数据库索引高频面试题:正则表达式学习之调用CLR函数执行正则查询(1)
Regex re = new Regex("(?<=\"UserID\":\").*?(?=\")", RegexOptions.IgnoreCase); MatchCollection mc = re.Matches(text_input); foreach(Match mt in mc) { //mt.Value}二,创建CLR工程---------我使用的IDE版本是VS2017 Enterpr…
2021/8/6 19:07:44 人评论 次浏览 -
Linux中的防火墙netfilter iptables 简介
一、Linux防火墙基础 1.1 ptables的表、链结构 1.1.1 Linux包过滤防火墙概述 netfilter 位于Linux内核中的包过滤功能体系 称为Linux防火墙的"内核态" iptables 位于/sbiniptables,用来管理防火墙规则的工具 称为Linux防火墙的"用户态" 上述2种称呼都…
2021/8/6 7:09:48 人评论 次浏览 -
Linux中的防火墙netfilter iptables 简介
一、Linux防火墙基础 1.1 ptables的表、链结构 1.1.1 Linux包过滤防火墙概述 netfilter 位于Linux内核中的包过滤功能体系 称为Linux防火墙的"内核态" iptables 位于/sbiniptables,用来管理防火墙规则的工具 称为Linux防火墙的"用户态" 上述2种称呼都…
2021/8/6 7:09:48 人评论 次浏览 -
Blog.043 Linux 防火墙① iptables
本章目录1. iptables 概述 1.1 netfilter/iptables 关系2. iptables 的 四表五链 2.1 四表 概述 2.2 五链 概述 2.3 四表五链的关系图 2.4 规则链的匹配顺序3. 编写 iptables 防火墙规则 3.1 iptables 的安装 3.2 基本语法、控制类型 3.3 添加、…
2021/8/6 7:09:42 人评论 次浏览 -
Blog.043 Linux 防火墙① iptables
本章目录1. iptables 概述 1.1 netfilter/iptables 关系2. iptables 的 四表五链 2.1 四表 概述 2.2 五链 概述 2.3 四表五链的关系图 2.4 规则链的匹配顺序3. 编写 iptables 防火墙规则 3.1 iptables 的安装 3.2 基本语法、控制类型 3.3 添加、…
2021/8/6 7:09:42 人评论 次浏览 -
python 基础知识:字符串,列表,元组
input().split() 可以连续输入多个数值split()是以指定的分隔符号来分隔并返回一个字符串 `>>> for i in range(1,5,2): print(i) 1 3` range(a,b,c)以a为开始步阶为c止于b但是b取不到
2021/8/5 22:37:06 人评论 次浏览 -
python 基础知识:字符串,列表,元组
input().split() 可以连续输入多个数值split()是以指定的分隔符号来分隔并返回一个字符串 `>>> for i in range(1,5,2): print(i) 1 3` range(a,b,c)以a为开始步阶为c止于b但是b取不到
2021/8/5 22:37:06 人评论 次浏览 -
Linux中的防火墙netfilter iptables 简介
一、Linux防火墙基础 1.1 ptables的表、链结构 1.1.1 Linux包过滤防火墙概述 netfilter 位于Linux内核中的包过滤功能体系 称为Linux防火墙的"内核态" iptables 位于/sbiniptables,用来管理防火墙规则的工具 称为Linux防火墙的"用户态" 上述2种称呼都…
2021/8/5 7:06:39 人评论 次浏览 -
Linux中的防火墙netfilter iptables 简介
一、Linux防火墙基础 1.1 ptables的表、链结构 1.1.1 Linux包过滤防火墙概述 netfilter 位于Linux内核中的包过滤功能体系 称为Linux防火墙的"内核态" iptables 位于/sbiniptables,用来管理防火墙规则的工具 称为Linux防火墙的"用户态" 上述2种称呼都…
2021/8/5 7:06:39 人评论 次浏览 -
[LeetCode] 3. Longest Substring Without Repeating Characters_Medium tag: two pointers
Given a string s, find the length of the longest substring without repeating characters.Example 1: Input: s = "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length of 3.Example 2: Input: s = "bbbbb" Outpu…
2021/8/5 6:08:37 人评论 次浏览 -
[LeetCode] 3. Longest Substring Without Repeating Characters_Medium tag: two pointers
Given a string s, find the length of the longest substring without repeating characters.Example 1: Input: s = "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length of 3.Example 2: Input: s = "bbbbb" Outpu…
2021/8/5 6:08:37 人评论 次浏览 -
[LeetCode] 11. Container With Most Water_Medium tag: two pointers
Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of the line i is at (i, ai) and (i, 0). Find two lines, which, together with the x-axis forms a…
2021/8/5 6:07:07 人评论 次浏览