8 lines
107 B
Python
8 lines
107 B
Python
|
|
|
|
|
|
def getCookie (cookies):
|
|
cookie = 0
|
|
for c in cookies:
|
|
cookie = c.value
|
|
return cookie |