美文网首页
Python——占位符 打印名片

Python——占位符 打印名片

作者: SeatonLv | 来源:发表于2019-12-26 11:17 被阅读0次

    占位符和C语言有类似,从C#过来的有点别扭

    code:

    companyName =input("请输入您的公司名称:")

    userName =input("请输入您的姓名:")

    userAge =input("请输入您的年龄:")

    userHeight =input("请输入您的身高:")

    jobPosition =input("请输入您的职位:")

    phoneNum =input("请输入您的联系方式:")

    print(companyName.center(22,"*"))

    #输入字符串的时候可以使用占位符%s

    print("姓名:%s"%(userName))

    #年龄是以int的形式展示 使用%d

    #占位符%d既可以表示int 也可以表示float(取整数部分)

    print("年龄:%d岁"%(int(userAge)))

    #%f表示浮点型 小数点后保留两位

    print("身高:%.2fcm"%(float(userHeight)))

    print("职位:%s"%(jobPosition))

    print("联系方式:%d"%(int(phoneNum)))

    result:

    相关文章

      网友评论

          本文标题:Python——占位符 打印名片

          本文链接:https://www.haomeiwen.com/subject/djykoctx.html