蓝螃蟹Karry0921

导航

2021年9月12日 #

字符串倒序输出

摘要: x = input()print(x[::-1]) 切片方法:一个完整的切片表达式包含两个“:”,用于分隔三个参数(start_index、end_index、step),当只有一个“:”时,默认第三个参数step=1(上网查的资料) 作者:蓝螃蟹Karry0921 学号:3039 阅读全文

posted @ 2021-09-12 22:45 蓝螃蟹Karry0921 阅读(199) 评论(0) 推荐(0) 编辑

格式化输出

摘要: x = float(input())print("{:.3f}".format(x)) 作者:蓝螃蟹Karry0921 学号:3039 阅读全文

posted @ 2021-09-12 12:21 蓝螃蟹Karry0921 阅读(29) 评论(0) 推荐(0) 编辑

计算矩形面积

摘要: a = eval(input())b = eval(input())print("%.2f"%(a*b)) 作者:蓝螃蟹Karry0921 学号:3039 阅读全文

posted @ 2021-09-12 11:44 蓝螃蟹Karry0921 阅读(82) 评论(0) 推荐(0) 编辑