Como Bruno ?
Não estou conseguindo importar o arquivo Aula4(sublime) para o Python, a aula não está sendo explicita como deverei fazer esta relação apenas utilizando from import .
No python:
Python 2.7.13 |Anaconda 4.4.0 (64-bit)| (default, May 11 2017, 13:17:26) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
Anaconda is brought to you by Continuum Analytics.
Please check out: http://continuum.io/thanks and https://anaconda.org
>>> from Aula4 import *
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named Aula4
>>> from Aula4 import *
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named Aula4
>>> gera_nome _convite ()
File "<stdin>", line 1
gera_nome _convite ()
^
SyntaxError: invalid syntax
>>> gera_nome_convite ()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'gera_nome_convite' is not defined
>>>
O arquivo Aula4 se localiza na pasta :
C:\Users\GUILHERME\Desktop\Programação\Python\Alura\Python_2_Programando