我有以下地址:
556_StreetName_Ave_CityName_11111
我想使用代码修剪最后一部分_Ave_CityName_11111
所以基本上我想删除最后3个下划线的任何内容。
这是我的代码:
output = "_".join(input['street_name'].split("_")[:-3])
但是我收到了错误:
Bargle. We hit an error creating a run python. :-( Error:
'unicode' object has no attribute 'copy'
以下是我在Zapier中的设置:
答案 0 :(得分:1)
output = {'street_name':“_”。join(input ['street_name']。split(“_”)[: - 3])}
如果有人需要帮助,这实际上是允许它工作的代码。
感谢nedbat在IRC phython频道上寻求帮助!!