Skip to content

Instantly share code, notes, and snippets.

View brunojhovany's full-sized avatar
🦍
Focusing

Jhovany Morales Bruno. brunojhovany

🦍
Focusing
View GitHub Profile
@brunojhovany
brunojhovany / coderbyte-age-counting-with-python.py
Last active September 10, 2022 07:51
coderbyte age counting with python
## In this example i use python with pandas
import requests
import numpy as np
import pandas as pd
r = requests.get('https://coderbyte.com/api/challenges/json/age-counting%27')
print(len(r.json()['data']))
# split data by ", "
data = r.json()['data'].split(", ")