Tag Archives: setup

Python Essential Reference 4th – 第8章 – 读书笔记

1、Python程序可以通过模块(modules)和包(package)来组织,简单来说,模块就是xx.py文件,而包就是一组这种文件组成的文件夹(含子文件夹)

2、如1中所属,每一个.py文件都可以看做是一个模块,通过import来引用。

[python]
#spam.py
a = 37
def foo():
print("I'm foo and a is %d" % a)

def bar():
print("I'm b[......]

继续阅读

vps初始配置

开机,内存使用36M,好强大...

0、更改密码
[shell]
#root登陆后,先更改密码,输入passwd后,连续两次新密码即可
passwd
[/shell]

1、安装vim

[shell]
#默认只有vi,没有vim...囧
yum install vim-enhanced
[/shell]

2、修改PS1
[shell]
vi /root/.bash_profile

# .bash_profile
# Get the aliase[......]

继续阅读