spangled spanner wrote:
> G'day,
>
> I have a comprehension issue here! I have made two simple scripts:
>
> ## script1
>
> import os
>
> print os.getcwd()
>
> -
> ## script 2
>
> import os
>
> f = open('test', 'wb')
> f.write(os.getcwd())
> f.close()
>
> ___
G'day,
I have a comprehension issue here! I have made two simple scripts:
## script1
import os
print os.getcwd()
-
## script 2
import os
f = open('test', 'wb')
f.write(os.getcwd())
f.close()
_
Both scripts are in my home directory.
Using bash I c