标签:
根据以下几个步骤来快速了解一下python,目标是可以利用python来处理一些简易的问题或者写一些工具。
1
|
print ( ‘HELLO WORLD‘ ) |
a = 2 if a==2: a = a+2##这里需要注意缩进,python中是使用缩进来区分层次的 print(a)
a = 1 while a<5: print(a) a +=1
for i in range(1, 5):##range返回一个序列的数 print(i)
a = {‘peter‘: ‘peter@tooo.com‘, ‘anne‘: ‘iamanne@3.com‘}##定义字典 print(a[‘peter‘]) if ‘peter‘ in a: print(‘peter is in‘) for key, value in a.items():##打印键和值 print(key + ‘:‘ + value) del a[‘anne‘]##删除对应key的键和值 for i in a.items(): print(i)
animal = ‘elephant‘ if animal.startswith(‘ele‘):##字符串是否以ele开头 print(‘start witch ele‘) print(‘a‘ in animal)##字符串是否包括‘a’字符串 print(animal.find(‘ant‘))##找到‘ant’第一次出现的位置,没有找到返回-1
class Peter(Person):##继承自Person def __init__(self, height): Person.__init__(self, ‘peter‘) self.height = height def sayHeight(self): print(‘i am %d feet tail‘ % self.height) peter = Peter(6) peter.sayName() peter.sayHeight()
f = open(r‘f:\11.txt‘, ‘r‘)##打开一个文件只读 w = open(r‘f:\33.txt‘, ‘w‘)##打开一个文件可写 for l in f: if l.find(‘iampeter‘) > 0: w.write(l)
标签:
原文地址:http://www.cnblogs.com/niurougan/p/4196085.html