我试图获取特定的播放列表ID并仅使用youtube api打印它

I am trying to get exactly the 51st playlist id and print it using channelid. Here is my code

https://www.googleapis.com/youtube/v3/playlists?part=snippet&order=date&channelId=UCpcsv3Ow-8IhoUGDEfPetsQ&maxResults=50&key=AIzaSyAZ_vsuKtEN99OnO43NKSLTb51Ajzhxfck

I am able to get the first 50 playlists, suppose if I want to print the 52nd playlist, How can I print it? Right now I am using the code below:

 response.items[1]['id']

How can I print exactly the 52nd playlist by this?