Confirmé
19 août 2026Trouve le bug : Data Analytics
Un extrait de code. Trouve le bug, ou prouve qu'il n'y en a pas.
python
1import asyncio
2import aiohttp
3
4async def fetch_user_data(user_id: int) -> dict:
5 async with aiohttp.ClientSession() as session:
6 url = f"https://api.example.com/users/{user_id}"
7 async with session.get(url) as resp:
8 return await resp.json()
9
10async def collect_profiles(user_ids: list[int]) -> list[dict]:
11 profiles = []
12 for uid in user_ids:
13 data = fetch_user_data(uid)
14 profiles.append(data)
15 return profilesClique sur les lignes qui posent problème.
Ton verdict
Une tentative par jour. La réponse s'affiche juste après.
Garde ta série
Crée un compte pour conserver ta série et suivre ta progression.