Monday 29 August 2016

python - Importing a text file in Python2.7

I want to import some external files in python. How can I do it?




Will it work with import module or there is some other way to do it?



e.g my file name is Hex.txt.

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...