K
kath
Hi,
Can any one please tell me how is the following code is working?
['a','b'] is a list of string, and [True] is list of boolean value.
How is it making effect....?
<code>
Thanks in advance,
regards,
kath.
Can any one please tell me how is the following code is working?
['a','b'] is a list of string, and [True] is list of boolean value.
How is it making effect....?
'a'['a','b] [True] 'b'
['a','b'] [False] 'a'
['a','b']['some_string' == r'some_string'] 'b'
['a','b']['some_string' == r'somestring']
<code>
Thanks in advance,
regards,
kath.