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
8월 25
|
2644 | ||
|
1
7월 25
|
1027 | ||
|
1
8월 25
|
1151 | ||
|
0
5월 25
|
1486 | ||
|
2
4월 25
|
3643 |
you can access like @David said but I am sure you don't need to access like that you are doing something wrong.