Python学习笔记一 基础知识

 

1.linux 和 nuix (windows 同理)

大多数进行linux 和 nuix 已经有python解释器,输入:

$ python

Python 2.4.1 (#1, Sep 22 2005, 16:55:36)
[GCC 2.96 20000731 (Red Hat Linux 7.3 2.96-122)] on linux2
Type "help", "copyright", "credits" or "license" for more information.


没有python解释器:
bash:python:command not find.

 


2.linux安装python

tar -zxvf Python-2.5.tgz 

./configure --prefix=${pwd} pwd 为安装路径 

make & make install

 

查看其它配置命令

./configure --help

 

 

3.交互式解释器

$perl
>>>print "hello,world!";
hello,world

 

概念;

算  法:就是告诉计算机如何完成一项任务的方法。

表达式:表达式是计算机程序组成的一部分,它用于表示值。

变  量:变量是一个名字,用于表示某个值。

语  句:告诉计算机做某事的指令。

模  块:模块就是扩展,可以导入到现有系统,直接使用。



你可能感兴趣的:(Python学习笔记一 基础知识)