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中使用?谢谢
答案 0 :(得分:1)
当然,您只需要将值包装在您自己的类中。您无法修改str
本身。
class X(str):
pass
name = X('name')
name.age = X('age')
name.age.other = 'other'