网站首页 站内搜索

搜索结果

查询Tags标签: than,共有 49条记录
  • python编程从入门到实践(第2版)第二章练习题解答

    文章目录 一、第二章练习题解答练习2-1练习2-2练习2-3练习2-4练习2-5练习2-6练习2-7练习2-8练习2-9练习2-10练习2-11 小结一、第二章练习题解答 练习2-1 **简单消息 将一条消息赋给变量, 并将其打印出来。**msg = "I love learning to use Pythoy" print(msg)练…

    2021/10/30 17:09:51 人评论 次浏览
  • Shell 脚本 test 命令详解

    test命令在bash shell脚本中经常以中括号([])的形式出现,而且在脚本中使用字母来表示比符号表示更专业,出错率更低。测试标志 代表意义文件名、文件类型-e 该文件名是否存在-f 该文件名是否存在且为file-d 该文件名是否存在且为目录-b 该文件名是否存在且为一个block-…

    2021/10/21 7:13:17 人评论 次浏览
  • Shell 脚本 test 命令详解

    test命令在bash shell脚本中经常以中括号([])的形式出现,而且在脚本中使用字母来表示比符号表示更专业,出错率更低。测试标志 代表意义文件名、文件类型-e 该文件名是否存在-f 该文件名是否存在且为file-d 该文件名是否存在且为目录-b 该文件名是否存在且为一个block-…

    2021/10/21 7:13:17 人评论 次浏览
  • SDKs For BlockChain

    BitcoinJ bitcoinj is a library for working with the Bitcoin protocol. It can maintain a wallet, send/receive transactions without needing a local copy of Bitcoin Core and has many other advanced features. It’s implemented in Java but can be used from…

    2021/10/6 23:11:53 人评论 次浏览
  • SDKs For BlockChain

    BitcoinJ bitcoinj is a library for working with the Bitcoin protocol. It can maintain a wallet, send/receive transactions without needing a local copy of Bitcoin Core and has many other advanced features. It’s implemented in Java but can be used from…

    2021/10/6 23:11:53 人评论 次浏览
  • mysql调优(九)--分区表

    思维导图一、分区表的应用场景 1.表非常大以至于无法全部都放在内存中,或者只在表的最后部分有热点数据,其他均是历史数据2.分区表的数据更容易维护批量删除大量数据可以使用清除整个分区的方式 对一个独立分区进行优化、检查、修复等操作3.分区表的数据可以分布在不同的…

    2021/10/4 19:11:06 人评论 次浏览
  • mysql调优(九)--分区表

    思维导图一、分区表的应用场景 1.表非常大以至于无法全部都放在内存中,或者只在表的最后部分有热点数据,其他均是历史数据2.分区表的数据更容易维护批量删除大量数据可以使用清除整个分区的方式 对一个独立分区进行优化、检查、修复等操作3.分区表的数据可以分布在不同的…

    2021/10/4 19:11:06 人评论 次浏览
  • Python之禅

    python之禅 Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:57:54) [MSC v.1924 64 bit (AMD64)] Type copyright, credits or license for more information IPython 7.23.1 -- An enhanced Interactive Python. Type ? for help.In [1]: import this The Zen of …

    2021/8/8 22:08:47 人评论 次浏览
  • Python之禅

    python之禅 Python 3.8.5 (tags/v3.8.5:580fbb0, Jul 20 2020, 15:57:54) [MSC v.1924 64 bit (AMD64)] Type copyright, credits or license for more information IPython 7.23.1 -- An enhanced Interactive Python. Type ? for help.In [1]: import this The Zen of …

    2021/8/8 22:08:47 人评论 次浏览
  • java中 Comparable.compareTo()与Comparator.compare()的排序顺序

    使用场景 Comparable: 是interface,一般通过implements重写compareTo()方法,是自身与参数的比较 在比较时不再需要comparator javaDoc: int compareTo​(T o) Compares this object with the specified object for order. Returns a negative integer, zero, or a positi…

    2021/8/6 14:07:05 人评论 次浏览
  • java中 Comparable.compareTo()与Comparator.compare()的排序顺序

    使用场景 Comparable: 是interface,一般通过implements重写compareTo()方法,是自身与参数的比较 在比较时不再需要comparator javaDoc: int compareTo​(T o) Compares this object with the specified object for order. Returns a negative integer, zero, or a positi…

    2021/8/6 14:07:05 人评论 次浏览
  • mysql按月进行表分区

    数据库 mysql 单表数据量达到千万、亿级,可以通过分表与表分区提升服务性能。 现有表accounting,4亿条数据,数据访问方式为insert与select,select为按月访问,为减少数据与程序变更,采用表分区的方式。数据表create语句: CREATE TABLE `accounting` (`date` datetim…

    2021/7/2 19:26:24 人评论 次浏览
  • httprunner 3.x学习18 - validate 断言总结

    前言 httprunner 3.x使用 validate 方法断言 comparator 校验方式 validate 可以支持的校验方式comparator 缩写 功能equal "eq", "equals", "equal" 相等less_than "lt", "less_than" 小于less_or_equals "le&qu…

    2021/6/24 23:28:35 人评论 次浏览
  • Linux_shell_整数二元比较操作符

    [],test中使用 (()),[[]中使用 说明-eq ==或= equal-ne != not equal-gt > greater than-ge >= greater equal-lt < less than-le <= less equal通过英语来记忆会好很多 比较符号的两端一定要有空格 [ 3 > 4 ] [[]] 是 test 的拓展命令,更复杂。除了要用…

    2021/6/23 7:28:11 人评论 次浏览
  • Python 6.21

    from math import pi as P from os.path import getsize from random import choice from itertools import * import math r = 3 print(round(Prr,2)) print(choice(Python)) print("----------------") characters = 1234 for item in combinations(character…

    2021/6/21 17:56:24 人评论 次浏览
扫一扫关注最新编程教程