Please, who can help me know how to access to the first element of this result.
(1, u'fixe_italie')
Thanks in advance
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Please, who can help me know how to access to the first element of this result.
(1, u'fixe_italie')
Thanks in advance
Hello,
var = (1, u'fixe_italie')
print var[0]
result -->1
print var[1]
result -->fixe_italie
Hope this helps,
David
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيلالمنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
---|---|---|---|---|
|
2
أغسطس 25
|
2605 | ||
|
1
يوليو 25
|
1014 | ||
|
1
أغسطس 25
|
1151 | ||
|
0
مايو 25
|
1464 | ||
|
2
أبريل 25
|
3619 |
you can access like @David said but I am sure you don't need to access like that you are doing something wrong.