Pranay
179 posts

Pranay
@pranaycooldev
21yo student learning about AI and web dev.
Katılım Şubat 2025
135 Takip Edilen8 Takipçiler

Introducing LibPDF, a new TypeScript-first PDF library built for modern runtimes.
It lets you parse, modify, sign, and generate PDFs with a clean API across Node, Bun, and the browser.
GitHub repo: github.com/libpdf-js/core

English

@Python_Dv Option: C
Why 👇:
1. range(1, 5, 2) gives the numbers 1 and 3 only.
2. The for loop runs twice and makes i = 1, then i = 3.
3. When the loop ends, i keeps the last value which is 3.
4. print(i) prints that last value which is 3.
So, the output is 3.
English











