Sobes.tech
Middle

#Bir URL sağlandı #[bağlantı] #Yanıt içinden tüm kullanıcıların isimlerini içeren bir liste alınmalı import requests url = "[bağlantı]" def test response = requests.get(url) print(response.json()) isimler = [kullanici['name'] for kullanici in response.json()] print(isimler)