Exemplo n.º 1
0
import helpers

num = (helpers.lucky_number())
print(num)
Exemplo n.º 2
0
# Import your helpers module here.  Do not use the 'from' or 'as' syntax, just use a plain old 'import'
import helpers

# Call the lucky_number function from your helpers module, and save the result to a variable called num
num = helpers.lucky_number()
Exemplo n.º 3
0
import helpers

print(helpers.lucky_number())

from helpers import lucky_number

print(lucky_number())