美文网首页Python
Python-Print-01

Python-Print-01

作者: 隔壁老周丨johanny | 来源:发表于2017-08-02 22:29 被阅读11次

__author__ ='johanny'

# -*- coding: utf-8 -*-

print("Hello World!")

print("Hello Again")

print("I like typing this.")

print("This is fun.")

print('Yay! printing.')

print("I'd much rather you 'not'.")

print('I "said" do not touch this.')

#结果

"""

Hello World!

Hello Again

I like typing this.

This is fun.

Yay! printing.

I'd much rather you 'not'.

I "said" do not touch this.

"""

相关文章

  • Python-Print-01

    __author__ ='johanny' # -*- coding: utf-8 -*- print("Hell...

网友评论

    本文标题:Python-Print-01

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