Linux + Python Study Notes

Source: Internet
Author: User

Linux:

Use Vim as a text editor

Vim -- enter vim, press "I" to enter insert (insert text mode), and write the source program

Press ESC and enter ": WQ + source file name" -- save and exit Vim

 

When you enter vim, you can name the source file:

VIM + source file name -- enter Vim

 

RM + filename -- delete an object

 

 

Python:

If python is installed in Linux, enter "Python" in the command line to obtain the Python version information and enter the python mode.

Python functions can be used in Python mode.

 

#! /Usr/bin/Python
# Filename: If. py

number = 23
guess = int(raw_input('Enter an integer : '))

if guess == number:
    print 'Congratulations, you guessed it.' # New block starts here
    print "(but you do not win any prizes!)" # New block ends here
elif guess < number:
    print 'No, it is a little higher than that' # Another block
    # You can do whatever you want in a block ...
else:
    print 'No, it is a little lower than that'
    # you must have guess > number to reach here

print 'Done'
# This last statement is always executed, after the if statement is executed

 

Useraw_input()The function obtains the number that the user guesses.

Related Article

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.