摘要:
Exercise: Solution: 1. def remove_char(s): s1 = list(s)#把字符串 拆分成列表 s1.remove(s1[0])#删除列表第一个元素 s1.pop()#删除列表最后一个元素 #把新生成的列表 s1 生成字符串 s2 = '' for i in s 阅读全文
摘要:
Exercise: Solution: 1. def rental_car_cost(d): pd = 40 * d if d < 3: return pd elif d < 7: return pd - 20 else: return pd - 50 2. def rental_car_cost( 阅读全文