Django Python实战(一)

2023-01-31 02:01:17 python django 实战

这段日子决定学习python开发一个运维系统,所有记录自己写下的点点滴滴

直接开始,不说废话了

好的开发首先需要一个好的开发平台,首先需要安装eclipse+Python插件

 

1 Python基础

主要说到python的基本几个方面:注释,变量,运算符,和基本python类型

 

 

注释

python的注释是用#表示,如果它是在一行里的第一个字符,那么整行就都是注释

                                   #还可以在行的中间,这代表从#开始的地方起同行中剩下的部分都属于注释

# this entire lines ls a comment
foo = 1     #short comment :assign int 1 to foo
print 'python and %s are number %d' % ('Django',foo)

运行结果为

python and DjanGo are number 1

 

 

变量和赋值

>>> foo = 'bar'
>>> foo
'bar'
>>> foo = 1
>>> foo
1

 

 

运算符

包括算术运算符如 + – *

相关文章