An Introduction to Python For Undergraduate Engineers
A Wikibookian believes this page should be split into smaller pages with a narrower subtopic. You can help by splitting this big page into smaller ones. Please make sure to follow the naming policy. Dividing books into smaller sections can provide more focus and allow each one to do one thing well, which benefits everyone. |
Authors
editMatthew Johnson
Dut Andrew Kulang
Getting Started
editLessons
editConditional Programming
editFunctions
editSimple Graphics using EasyGui
editMathematics In Python
editThere are two main additional modules that enable us to use Python as a very sophisticated environment for dealing with algebra and numerical problems, these are the built in 'math' module and an additional module 'sympy', which can be downloaded from the internet (see the 'Getting Additional Modules' section at the end).
Remember that to use a module we must first import it using the import command, for example:
from sympy import *
Getting Additional Modules
editEasyGui Sympy
Recommended Reading
editWikibooks
editTextbooks
editComputer Science: The Python Programming Language, Miller & Ranum, Jones & Bartlett Publishers, ISBN 0-7637-4316-X
This is a good, quick way to get into the basics, but won't really give you much more detail than this wiki.
Python Programming: An Introduction to Computer Science, John Zelle, Franklin Beedle & Associates, ISBN 1-887902-99-6
This is a more thorough book that covers more detail, however it is written as a way of learning computer science using Python as a starting language and so may not directly relate to programming in engineering. Nevertheless if software design is closer to your interests/needs then this might be the book for you.
References
editThe following references have helped the author(s) to learn python and are recommended for study if you wish to pursue python further. This wikibook is intended only as a short course to get you started with python. There is much more you can learn and a great deal more that you can do with it! Good luck!