luanyata
(usa Ubuntu)
Enviado em 09/01/2014 - 16:17h
Ola pessoal tudo bem?? estou estudando Python e travei num problema que vem consumindo meus neurônios. Estou tentando utilizar a função startfile do modulo "os" mais olha o que acontece:
Python 2.7.5+ (default, Sep 19 2013, 13:48:49)
[GCC 4.8.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> atalho = os.startfile
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'startfile'
também já tentei:
>>> atalho = os.startfile("/home/luan/Documentos/Python/Aula_1/tabela.txt")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'startfile'
>>>
Alguém poderia dar uma força :)