From 1279efeb94187e257d422ec1a7921a4e8d8180f9 Mon Sep 17 00:00:00 2001 From: jaywcjlove Date: Fri, 15 Sep 2023 07:28:08 +0000 Subject: [PATCH] doc: update docs/python.md (#432) bbd3292c8ebacff4c8c0b4c2c9f5aa23437dca23 --- CONTRIBUTORS.svg | 22 ++++++++++++---------- docs/python.html | 4 ++-- index.html | 2 +- 3 files changed, 15 insertions(+), 13 deletions(-) diff --git a/CONTRIBUTORS.svg b/CONTRIBUTORS.svg index 99222c3c..0933513b 100644 --- a/CONTRIBUTORS.svg +++ b/CONTRIBUTORS.svg @@ -206,25 +206,27 @@ + + - + - + - + - + - + - + - + - + - + - + \ No newline at end of file diff --git a/docs/python.html b/docs/python.html index 8af00a84..da8ea00e 100644 --- a/docs/python.html +++ b/docs/python.html @@ -401,10 +401,10 @@

头尾判断

>>> # 是否以 H 开头
->>> "Hello, world!".endswith("H")
+>>> "Hello, world!".startswith("H")
 True
 >>> # 是否以 h 开头
->>> "Hello, world!".endswith("h")
+>>> "Hello, world!".startswith("h")
 False
 >>> # 是否以 ! 结尾
 >>> "Hello, world!".endswith("!")
diff --git a/index.html b/index.html
index b4404ec5..ccdf456e 100644
--- a/index.html
+++ b/index.html
@@ -1346,7 +1346,7 @@
 
 

如果你有资源,可以很方便部署 web 版,这非常简单,只需要克隆 gh-pages 分支代码到你的静态服务就可以了,还可以使用 docker 快捷部署 web 版。

-
+