Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 342 Bytes

Sample.md

File metadata and controls

26 lines (15 loc) · 342 Bytes

Test out your code

Random instructions

Stick this code in the right panel.

import requests

url = "https://httpbin.org/get"

r = requests.get(url)

print(r.status_code)
print(r.headers)
print(r.text)

Then click the RUN IT button at the bottom navigation bar.

Wait a sec...

dot dot dot

and the your code complete.