Ethan Best
Ethan Best

Reputation: 21

Python 3: Any tips on coding with multiple source files?

I am slowly starting a project that will be using multiple source files and I'm wondering what are some good practices whilst doing that. Any tips and/or tricks would be appreciated!

Upvotes: 1

Views: 141

Answers (1)

Lennart Regebro
Lennart Regebro

Reputation: 172179

Make a module. Use a versioning control system. That's it really. Otherwise best practices are the same no matter how many files you have.

Upvotes: 1

Related Questions