Calculate a total biomass in grams for 3 white-throated woodrats (Neotoma albigula) and then convert it to kilograms. The total biomass is three times the average size of a single individual. An average individual weighs 250 grams.
grams
and assign it the mass of a single
Neotoma albigula.number
and assign it the number of individuals.biomass
and assign it a value by multiplying
the grams
and number
variables together.biomass
into kilograms (there are 1000
grams in a kilogram so divide by 1000) and assign this value to a new
variable.Are the variable names grams
, number
, and biomass
the best choice? If we
came back to the code for this assignment in two weeks would we be able to
remember what these variables were referring to and therefore what was going on
in the code? The variable name biomass
is also kind of long. If we had to type
it many times it would be faster just to type b
. We could also use really
descriptive alternatives like individual_mass_in_grams
. Or we would compromise
and abbreviate this or leave out some of the words to make it shorter (e.g.,
indiv_mass_g
).
Think about good variable names and then rename the variables in your program to what you find most useful. Make sure your code still runs properly after you’ve changed the names.
[click here for output]