python 写文件

file_ex = open('data.txt', 'w')

如果文件已存在,完全清除现有内容。如果不存在,则创建。

追加到文件,使用 a。

读和写,不清除,用 w+


if 'file_ex' in locals():

   file_ex.close()

list相加:

>>> [1,2,3] +[4,5,6]
[1, 2, 3, 4, 5, 6]

合情合理,因为str也是list。连个str拼接也是 +。

>>> [1,2,3] +[4,5,6]
[1, 2, 3, 4, 5, 6]

但是:

>>> [1,2,3]+"qwer"
Traceback (most recent call last):
  File "<pyshell#11>", line 1, in <module>
    [1,2,3]+"qwer"
TypeError: can only concatenate list (not "str") to list

上面报错。尽管两者都是list,但是列表和字符串无法拼接

但是:

>>>[1,2,3] +[4,'tr',6]+['gg']

[1, 2, 3, 4, 'tr', 6, 'gg']

这样就没有问题

extend修改原先,+ 创建新的。extend 效率高


>>> p='rw'
>>> 'w' in p
True
>>> 'x' in p
False
>>> 

>>> num=[100,34,678]
>>> len(num)
3
>>> max(num)
678
>>> min(num)
34
>>> 

>>> num=['22','gg','vb']
>>> ''.join(num)
'22ggvb'
>>> 

>>> num
['22', 'gg', 'vb']
>>> del num[2]
>>> num
['22', 'gg']


>>> ['to', 'be', 'to'].count('to')
2
>>> x=[[1,2], 1, 1, [2, 1, [1, 2]]]
>>> x.count(1)
2
>>> x.count([1,2])
1
>>> 


index 找第一个

>>> ['to', 'be', 'to'].index('to')
0
>>> ['to', 'be', 'to'].index('be')
1
>>> 


>>> num = [1,2,3]
>>> num.insert(2, 'four')
>>> num
[1, 2, 'four', 3]
>>> 

pop默认是最后一个

>>> num  
[1, 2, 'four', 3]
>>> num.pop(2)
'four'
>>> num
[1, 2, 3]
>>> num.pop()
3
>>> num
[1, 2]
>>> 


remove第一个匹配项

>>> x
['to', 'be', 'to']
>>> x.remove('to')
>>> x
['be', 'to']
>>> remove没有返回值,但pop有


>>> x
['be', 'to']
>>> x.reverse()
>>> x
['to', 'be'] 无返回值


>>> reversed(x)
<list_reverseiterator object at 0x00000000037BCFD0>
>>> list(reversed(x))
['be', 'to']
>>> reversed不返回列表,返回迭代器iterator。要使用list转换成列表。


sort不返回值。sorted 返回。好像加ed 的都返回,不加的不返回。。

x.sort().reverse() 不行,因为sort返回值是None。

>>> x.sort().reverse()
Traceback (most recent call last):
  File "<pyshell#53>", line 1, in <module>
    x.sort().reverse()
AttributeError: 'NoneType' object has no attribute 'reverse'
>>> 

sorted(x).reverse()可以

>>> sorted(x).reverse()
>>> x
['be', 'to']
>>> 

>>> x=['aardvasr','abaddg','asd','dd']
>>> x.sort(key=len)
>>> x
['dd', 'asd', 'abaddg', 'aardvasr']
>>> 

>>> x.sort(key=len, reverse=False)
>>> x
['dd', 'asd', 'abaddg', 'aardvasr']# 怎么没反过来呢???


>>> x.sort(key=len, reverse=True)
>>> x
['aardvasr', 'abaddg', 'asd', 'dd']#这样可以,默认值是False,很合理!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值