📜  python代码示例中的三引号是什么意思

📅  最后修改于: 2022-03-11 14:47:22.302000             🧑  作者: Mango

代码示例1
# triple quotes string can extend multiple lines
my_string = """Hello, welcome to
           the world of Python"""
print(my_string)