Python输出格式化

print(f" ")
在输出前加上f是格式化字符串,例如:print(f"输出内容{123}“)
  
print(r" ")
在输出前加上r是为了防止转义,例如:print(r"输出内容\n”)

你可能感兴趣的:(python,python)