码迷,mamicode.com
首页 > 其他好文 > 详细

scrapy框架之添加功能

时间:2019-12-25 02:01:27      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:列表、元组、字典   int   org   函数   user   from   type   https   用法   

Python中的 .join() 函数经常被大家使用到,之前写代码的时候也被用到过,在这里提出一下:

这个函数展开来写应该是str.join(item),join函数是一个字符串操作函数

str表示字符串(字符),item表示一个成员,注意括号里必须只能有一个成员,比如‘,‘.join(‘a‘,‘b‘)这种写法是行不通的

举个例子:

,.join(abc)

上面代码的含义是“将字符串abc中的每个成员以字符‘,‘分隔开再拼接成一个字符串”,输出结果为:

a,b,c

join里放列表、元组、字典也是可以的

c=‘;.join([a,b,c])
>> print(c)
>> a;b;c

已经python中的extract(),它的主要作用是将数组展开,键名作为变量名,元素值为变量值,可以说为数组的操作提供了一个方便的工具

例:

from.html

<form action="action.php" method="post">
<input type="text" name="username">
<input type="password" name="password">
<input type="submit">

在action.php中只要使用extract()函数将$_POST全局数据解开:
action.php

 <?php
extract($_POST);
//相当于$username = $_POST[‘username‘];
//$password = $_POST[‘password‘];
?>

 

还有当时在写scrapy框架看代码时偶然看到的一个写法:

sentences=[y for x in sentences for y in x]
之前没看到过,一头雾水,经过查资料后发现是这样去理解的:

def f(z):
    for y in z:
        for x in y:
           yield x
英文描述:[item for sublist in list for item in sublist]

也就是:子列表中项目的子列表项目

 效果展示:

> # flatten a list using a listcomp with two ‘for‘
> vec = [[1,2,3], [4,5,6], [7,8,9]]
> [num for elem in vec for num in elem]
 
[1, 2, 3, 4, 5, 6, 7, 8, 9]
作用:将列表展平

当然还有更高级的用法:

 [(x, y) for x in [1,2,3] for y in [3,1,4] if x != y]
[(1, 3), (1, 4), (2, 3), (2, 1), (2, 4), (3, 1), (3, 4)]
 它等价于:

>>> combs = []
>>> for x in [1,2,3]:
...     for y in [3,1,4]:
...         if x != y:
...             combs.append((x, y))
...
>>> combs
[(1, 3), (1, 4), (2, 3), (2, 1), (2, 4), (3, 1), (3, 4)]
最后附上python3官方文档连接:https://docs.python.org/3/tutorial/datastructures.html#list-comprehensions

scrapy框架之添加功能

标签:列表、元组、字典   int   org   函数   user   from   type   https   用法   

原文地址:https://www.cnblogs.com/xuedine/p/12094446.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!