Python learning notes (2) two ways to implement the first python program, learning notes python

Source: Internet
Author: User

Python learning notes (2) two ways to implement the first python program, learning notes python

In interactive mode:

If you want Python to print the specified text, you can usePrintStatement, and then enclose the text to be printed in single or double quotation marks, but the single quotation marks and double quotation marks cannot be mixed:

>>> Print 'hello, world'
Hello, world
In interactive mode, although it is convenient, the Code cannot be saved once it is executed. Next we will write it in a text editor and save it.

Open notepad ++ and select the edited code, python

# Hello. py
Print 'Hello world'

The last file name is hello. py. Open the command line cd to the file storage path, and then enter python hello. py.

Result:

Python hello. py
Hello world
Note:

1. # The python comments are similar to the C language //, and the subsequent text python will not be executed.

2. If Chinese characters are output, they must be converted to unicode encoding in the format of print u'hao'

3. Check whether your path is correct when no file is displayed.

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.