On 9/5/2017 10:26 AM, Andrej Viktorovich wrote:
Hello,
I run Python 3.6 console under windows 10. Where is default console directory?
It depends on how and where you start it.
I run script:
tf = open ("aaa.txt", "w")
tf.write(" %s" % 123)
tf.close()
Where file aaa.txt will be created?
On Tue, Sep 5, 2017 at 9:26 AM, Andrej Viktorovich
wrote:
>
> I run Python 3.6 console under windows 10. Where is default console directory?
The working directory for the console (i.e. conhost.exe) is irrelevant
to Python. So I assume you mean the default working directory of the
Python shell (i.
On 2017-09-05 15:31, Stefan Ram wrote:
Andrej Viktorovich writes:
Hello,
I run Python 3.6 console under windows 10. Where is default console directory?
I run script:
tf = open ("aaa.txt", "w")
tf.write(" %s" % 123)
tf.close()
|>>> import os
|>>> os.getcwd()
Also, os.chdir(path) to chang
On Tuesday, September 5, 2017 at 7:58:23 PM UTC+5:30, Andrej Viktorovich wrote:
> Hello,
>
> I run Python 3.6 console under windows 10. Where is default console directory?
>
> I run script:
> >>> tf = open ("aaa.txt", "w")
> >>> tf.write(" %s" % 123)
> >>> tf.close()
>
> Where file aaa.txt w
On Wed, Sep 6, 2017 at 12:26 AM, Andrej Viktorovich
wrote:
> Hello,
>
> I run Python 3.6 console under windows 10. Where is default console directory?
>
> I run script:
tf = open ("aaa.txt", "w")
tf.write(" %s" % 123)
tf.close()
>
> Where file aaa.txt will be created? Can I chan
Hello,
I run Python 3.6 console under windows 10. Where is default console directory?
I run script:
>>> tf = open ("aaa.txt", "w")
>>> tf.write(" %s" % 123)
>>> tf.close()
Where file aaa.txt will be created? Can I change default work space location?
How?
--
https://mail.python.org/mailman/