Python入门学习
文章平均质量分 57
Darren_张十七
修学储能,先博后渊,有蓝天就有鹏飞~~Keep Moving!
展开
-
Python基础学习_传递参数与参数类型
****** 20230214 ******# 传递参数与参数类型 (位置参数,关键词参数) (初级版)def trapezoid_area(base_up,base_down,height): return 1/2 * (base_up + base_down) * heightt = trapezoid_area(1,2,3) # t1 = trapezoid_area(base_up= 1 ,base_down= 2,height=3) # t2 = trapezoid_area(height原创 2023-03-09 06:30:00 · 60 阅读 · 0 评论 -
Python入门学习_变量与字符串
不同数据类型的转化合并(相加)与相乘。# 不同数据类型的转换与合并。# 字符串的分片与索引_1。# 字符串的分片与索引_2。# 字符串的用法——合并。原创 2023-03-07 13:47:47 · 64 阅读 · 0 评论