I'd like to upload these revisions to my homepage, but I'm concerned about any rules I may have missed about licensing and/or proper crediting.
The pattern I've followed is something like the following, taken from the very first issue:
Code: Select all
#!/usr/bin/env python3
# ARITHMATIC
# Modified from the version seen in The MagPi Issue 1
# Authors: stevepdp - 9th March 2014
# Jaseman - 23rd April 2012
# Fewer calls to the print function, but still readable
print("Two plus two equals", 2 + 2, "\n");
print("Eight minus three equals", 8 - 3, "\n");
print("Four times two equals", 4 * 2, "\n");
print("Ten divided by two equals", 10 / 2, "\n");