首页
分类
标签
图库
动态
软件包
关于
梁来福
累计撰写
128
篇文章
累计创建
27
个标签
累计收到
1
条评论
栏目
首页
分类
标签
图库
动态
软件包
关于
目 录
CONTENT
以下是
Python
相关的文章
2022-02-08
公共操作和方法
运算符 运算符加号 str1 = 'A' str2 = 'B' list1 = [1, 2] list2 = [3, 4] tup1 = (1, 2) tup2 = (3, 4) print(str1 + str2) print(list1 + list2) print(tup1 + tup2
2022-02-08
2
0
0
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
6
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
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
字符串操作之修改
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
2
3