This homework will require you to write some basic programs in python. You should save your programs in your cs21/homework/01 directory. A skeleton version of each program you will write will appear in cs21/homework/01 if you run update21. The program handin21 will only submit files in this directory.
Your programs are graded on both correctness and style. Please review
the comments regarding programming style on the main page.
Email me a brief biography of yourself. You can simply reply to my email I sent you, or find my email address at the top of my home page. Your bio should include your preferred name,
a description of any prior programming or linux experience (none is completely
ok), your major or possible intended majors, and any extra-curricular activities you would like to mention.
This program determines your birth year given your age and current year Enter your age: 20 Enter the current year: 2006 You were either born in 1986 or 1985
This program prints the Celsius temperature
given a Fahrenheit temperature.
Enter a Fahrenheit temperature: 70
70 degrees F is 21.11 degrees C
This program prints an increasing series of right-justified stars
Enter desired number of lines: 7
*
**
***
****
*****
******
*******
HINT: You can use the string " " to represent one blank space. Also think about how the number of spaces you want per line and the number of stars you want per line relate to your loop variable.