首页
分类
标签
图库
动态
软件包
关于
梁来福
累计撰写
121
篇文章
累计创建
25
个标签
累计收到
1
条评论
栏目
首页
分类
标签
图库
动态
软件包
关于
目 录
CONTENT
以下是
Python
相关的文章
2022-02-04
tcp客户端程序开发
我使用的iphone模拟服务端 代码实现 import socket if __name__ == '__main__': # 1、创建tcp客户端套接字 # AF_INET:IPv4地址类型 # SOCK_STREAM:tcp传输协议类型 tcp_client_s
2022-02-04
2
0
0
Python
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
0
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
0
0
0
Python
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
4
0
0
Python
1
2
3