Python如何创建嵌套对象?

时间:2016-02-04 00:42:33

标签: python-3.x

python如何创建嵌套对象?


let bs=3858920
for i in {1..100}
do 
let bsi=${bs}*$i
mongoexport --db dbnamehere --collection collectionNamehere --port 3303\
  --fields="f1,f2,f3" \
  --out /opt/path/to/output/dir/dump.${i}.json -v \
  --skip ${bsi} --limit ${bs} 
done

甚至可以在python中使用?谢谢

1 个答案:

答案 0 :(得分:1)

当然,您只需要将值包装在您自己的类中。您无法修改str本身。

class X(str):
    pass

name = X('name')
name.age = X('age')
name.age.other = 'other'