#!/usr/bin/env python def FizzBuzz(numero): if not numero % 3: return "fizz" return numero