python【下载环境+IDE+基本语法】

# 注释

>>>name=raw_input()  ----->输入
>>>print 'hello',name    ----->输出

if - else:

# print absolute value of an interger:
a = 100
if a >= 0:
    print a
else:
    print -a

#开头的语句是注释,注释是给人看的,可以是任意内容,解释器会忽略掉注释。其他每一行都是一个语句,当语句以冒号“:”结尾时,缩进的语句视为代码块。

缩进有利有弊。好处是强迫你写出格式化的代码,但没有规定缩进是几个空格还是Tab。按照约定俗成的管理,应该始终坚持使用4个空格的缩进。

缩进的另一个好处是强迫你写出缩进较少的代码,你会倾向于把一段很长的代码拆分成若干函数,从而得到缩进较少的代码。

最后,请务必注意,Python程序是大小写敏感的,如果写错了大小写,程序会报错。 

两种数组:

>>> classmats=['a','v','c']
>>> len(classmats)
3
>>> classmats[0]
'a'
>>> print classmats[0]
a
>>> print classmats[-1]
c
>>> print classmats[-8]
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
IndexError: list index out of range
>>> classmats.append('ss')
>>> classmats
['a', 'v', 'c', 'ss']
>>> classmats.insert(1,'u')
>>> classmats
['a', 'u', 'v', 'c', 'ss']
>>> classmats.pop()
'ss'
>>> classmats.pop(1)
'u'
>>> classmats[0]='Rachel'
>>> classmats
['Rachel', 'v', 'c']
>>> L=[1,'s',True]
>>> L
[1, 's', True]
>>> L.append(classmats)
>>> L
[1, 's', True, ['Rachel', 'v', 'c']]
>>> len(L)
4
>>> L[3][0]
'Rachel'
>>> classmm('Machel','Bob','j')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'classmm' is not defined
>>> classmm=('Machel','Bob','j')
>>> classmm
('Machel', 'Bob', 'j')
>>> t=()
>>> t
()
>>> len(t)
0
>>> apple=(1,)
>>> len(apple)
1
>>> apple
(1,)
>>> ^Z

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值