Course

COM S 127 · Intro to CS

Upload your notes

Log in to share your notes with classmates.

Log in

Shared notes

See what classmates have uploaded for this course.

Untitled note

Anonymous · 1 day ago

1455.jpg
public37 KB1455.jpg

Untitled note

Anonymous · 1 day ago

public1 KBREADME.md

New note

Anonymous · 1 day ago

Testing out note feature

public

Python

Anonymous · 3 days ago

Concurrency basics Threads: threading for I/O-bound tasks. Processes: multiprocessing for CPU-bound. Async: asyncio for cooperative async I/O. Example async: import asyncio async def fetch(x): await asyncio.sleep(1) return x*2 async def main(): results = await asyncio.gather(fetch(1), fetch(2))

public