##关于计算身高的百分比计算可能有误,请自行检查 **=input("请输入性别(填写男或女):") father=input("请输入父亲的身高:") father=float(father) mother=input("请输入母亲的身高:") mother=float(mother) sports=input("你是否喜爱运动(填写喜爱或不喜爱):") habbit=input("你认为自己的饮食习惯是否良好(填写...
回答于 2021-09-23 23:10
def rev(s): a = list(s) a.reverse() return ''.join(a) 一定要先转成list
回答于 2021-08-07 15:38