美文网首页
python自学计划-变量之间连接-17

python自学计划-变量之间连接-17

作者: 你缺少想象力 | 来源:发表于2018-12-12 16:54 被阅读0次

    变量之间的连接格式:

    "xxx %s" % (str)
    

    例子:

    name = '张三'
    age = 18
    print("我叫%s,今年%s岁" % (name, age))
    

    运行结果:

    我叫张三,今年18岁
    

    相关文章

      网友评论

          本文标题:python自学计划-变量之间连接-17

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