Rafael Pivato

computer programmer

>>> from rafaelpivato import *
>>> print about, '\n'
{'Name': 'Rafael Pivato',
 'Hobby': 'Woodworking'}

>>> print skills[:3], '\n'
['Python', 'ReactJS', 'NoSQL']

>>> print interests[:3], '\n'
['Web', 'DevOps', 'Startups']

>>> for current in positions:
...     print current[:2]
...     print '\t', current[2]
...     print '\n'
...
('KlioHealth', 'Lead Developer')
	http://www.kliohealth.com/

('SeniorGrowth', 'Lead Developer')
	http://www.seniorgrowth.com/

>>> exit()