美文网首页
Python入坑第一天(一)

Python入坑第一天(一)

作者: leehuan | 来源:发表于2016-04-24 15:14 被阅读0次

    基本字符:

    “\”  转义字符,用来输入语句中使用

    “\n”  换行字符,输入语句中使用

    "+" 拼接字符,可以拼接字符串

    print自带字符串拼接:

    print("lee","huan")

    输出>>> lee huan

    >>> "lee %s" % ("huan")

    输出: ‘lee huan’

    说明: %s 可以无限使用(自我感觉)

    实例:

          “lee %s%s%s”%(“man”,”du“,”hehe“)

    输出: lee manduhehe(注意如果是%s %s %s格式会报错)

    >>>"%s  %s %10s" %("man","come","here")

    输出: man come           here(第二个和第二个间隔是10个空格)

    相关文章

      网友评论

          本文标题:Python入坑第一天(一)

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