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
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrirePublications associées | Réponses | Vues | Activité | |
---|---|---|---|---|
|
2
août 25
|
2612 | ||
|
1
juil. 25
|
1015 | ||
|
1
août 25
|
1151 | ||
|
0
mai 25
|
1470 | ||
|
2
avr. 25
|
3621 |
you can access like @David said but I am sure you don't need to access like that you are doing something wrong.