python使用制表符或者换行符来添加空白--3

#!/usr/bin/python
#coding=utf-8
message="python"
print(message)
print("	python")
print("hello
python
hello
world")

  

原文地址:https://www.cnblogs.com/tigergaonotes/p/14194653.html