Python入坑第一天(一)

基本字符:

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

“\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入坑第一天(一))