- 👋 Hi, I’m @juliobillet
- 👀 I’m interested in development in general.
- 🌱 I’m currently graduating in Data Science.
- 💞️ I’m looking forward to collaborate on projects of any sorts, by I hold a place in my heart for games and would love to work in any way related to it.
- 📫 How to reach me: @juliobillet on Twitter and Instagram.
class Me:
def __init__(self):
self.name = "Júlio Billet"
self.pronouns = "they/them"
self.codes = "Python, JavaScript, C, HTML, CSS and Lua"
self.tools = "Visual Studio Code, Sublime Text, PyCharm, MySQL Workbench, Pandas, OpenRefine, Seaborn, Scikit-Learn, Matplotlib, Numpy, Jupyter Notebook, Google Colab, Git, GitHub, PostgreSQL, MySQL, SQLite, NLTK, rvest, Tidyverse, dplyr, spaCy, gensim.models."
this_is_my = Me()
print(f"My name is {this_is_my.name}\n"
f"My pronouns are: {this_is_my.pronouns}\n"
f"I code in {this_is_my.codes}\n"
f"Known tools: {this_is_my.tools}"
)