I have a list which collect data, and at one point it returns None and i need to replace this None with a 0. How can i get this done in openerp 7
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
You can iterate the list and check the condition. If you get None value it will insert 0 in new list.
>>> a = [1,2,3,'c',None]
>>> b = []
>>> for x in a:
... if x is None:
... b.append(0)
... else:
... b.append(x)
...
>>> b
[1, 2, 3, 'c', 0]
Thank You @Krutarath,
Already i have done that this way,
late_duration = [['a', 1], ['b', 4], ['c', None]]
late_duration_val_list = [[None if isinstance(b, int) else 0 if b == None else b for b in i] for i in late_duration]
late_duration.append(late_duration_val_list)
print (late_duration_val_list)
Output is,
[['a', None], ['b', None], ['c', 0]]
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيلالمنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
---|---|---|---|---|
|
3
أغسطس 15
|
22672 | ||
|
1
مارس 15
|
6311 | ||
|
0
فبراير 16
|
2947 | ||
|
2
أغسطس 15
|
6698 | ||
|
1
أغسطس 15
|
4651 |