Что значит «из… импортировать…»?

from sys import argv
from os.path import exists

script, from_file, to_file = argv

print "Copying from %s to %s" % (from_file, to_file)

# we could two on one line too, how?
input = open(from_file)
indata = input.read()

print "The input file is %d bytes long" % len(indata)
print "Does the output file exist? %r" % exists(to_file)
print "Ready, hit return to continue, CTRL-C to abort."

raw_input()

output = open(to_file, 'w')
output.write(indata)

print "Alright, all done."

output.close()
input.close()

По первым двум строчкам я имею некоторое представление о том, что происходит,но хочу убедиться, что я полностью понимаю это, так как это кажется важным.

7
задан jonrsharpe 22 October 2019 в 07:52
поделиться