首页
分类
标签
图库
动态
软件包
关于
梁来福
累计撰写
128
篇文章
累计创建
27
个标签
累计收到
1
条评论
栏目
首页
分类
标签
图库
动态
软件包
关于
目 录
CONTENT
最新文章
欢迎加QQ好友交流!
2022-02-03
循环while
练习示例: 1、打印星号正方形 j = 0 while j < 5: i = 0 while i < 5: print('*', end='') i += 1 print() j += 1 2、打印星号三角形 j = 0 while
2022-02-03
35
0
0
Python
2022-02-02
字符串操作
str = 'hello world and hello python and hello java' 1、capitalize() ---字符串首字母大写 new_str = str.capitalize() print(new_str) 执行结果:Hello world and hello
2022-02-02
2
0
0
Python
2022-02-01
Docker搭建个人博客Solo
1、安装Docker,搭建Mysql 很简单,自行安装 2、获取solo最新镜像 docker pull b3log/solo 3、配置Mysql 连接mysql,手动建库(库名 solo ,字符集使用 utf8mb4 ,排序规则 utf8mb4_general_ci ): create data
2022-02-01
16
0
0
2022-02-01
字符串操作之修改
str = 'hello world and hello python and hello java' 1、replace() ---替换函数 语法:字符串序列.replace(旧子串,新子串, 替换次数) 1.1 将‘and’替换为‘和’ new_str = str.replace('and',
2022-02-01
6
0
0
Python
1
...
12
13
14
15
16