linux+python学习笔记

linux:

使用 VIM 为文本编辑器

vim --进入VIM,按“i”进入 insert(插入文本模式),编写源程序

按esc,并输入“:wq +源文件名” --保存并退出vim

 

进入vim时,已经可以命名源文件:

vim +源文件名  --进入VIM

 

rm +filename  --删除文件

 

 

python:

linux内装有python,在命令行下输入“python”可以得到python的版本信息,并且进入python模式

python模式下可以使用python的函数

 

#!/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

 

使用raw_input()函数取得用户猜测的数字

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值