From a9db530948b5a643da5a96b0565ae4d551079fb1 Mon Sep 17 00:00:00 2001 From: Kyra Stolarski Date: Fri, 12 Oct 2018 13:40:44 -0500 Subject: [PATCH 1/2] Changed date and location --- pages/events.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/events.html b/pages/events.html index 5ca869b..616a961 100644 --- a/pages/events.html +++ b/pages/events.html @@ -52,14 +52,14 @@

Fedora Women's Day Event at TBA

-

--

+

12

Oct

-

PyMavs Hacktoberfest Day at TBA

-

PyMavs will be working together as a community to partake in DigitalOcean's Hacktoberfest on [DATE] [Location]. All skill levels are welcome to join us!

+

PyMavs Hacktoberfest Day at Nedderman Hall

+

PyMavs will be working together as a community to partake in DigitalOcean's Hacktoberfest on Oct 12th in 229 Nedderman Hall. All skill levels are welcome to join us!

Learn more at this link.

-

Location: TBA

+

Location: Nedderman Hall

From 13b7f9864f86e5b6e6892a0038ccac19d171b7e8 Mon Sep 17 00:00:00 2001 From: kstolarski <44098374+kstolarski@users.noreply.github.com> Date: Wed, 5 Feb 2020 11:05:22 -0600 Subject: [PATCH 2/2] Add files via upload Skeleton code 2/5/20 --- skeleton.py | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 skeleton.py diff --git a/skeleton.py b/skeleton.py new file mode 100644 index 0000000..0567e4d --- /dev/null +++ b/skeleton.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +""" +Created on Tue Feb 4 09:53:52 2020 + +@author: Kyra +""" +#create lists to track course data +grade_list = [] +credit_list = [] +name_list = [] + +x = 1 +total_credits = 0 +total_points = 0 + +print('Semester GPA calculator') + +num_of_classes = + +while x <= num_of_classes: + + #get class name and add it to list + name1 = input('') + + + #loop until we get a valid number of credits + credit = 0 + while True: + credit = input('') + if credit.isdigit(): + break + else: + print('Invalid, enter an integer') + #cast to int and add to list + + while True: #loop until we get a valid grade + grade1 = input('What grade did you get? (A,B,C,D,F): ') + grade1 = grade1.upper() + #get numerical grade, add it to list + + #repeat loop if invalid + + x += 1 + +for i in range(0, len(grade_list)): + #calculate values + +# print(name_list) +# print(grade_list) +# print(credit_list) +# print('Total points: ', total_points) +# print('Total credit hours: ', total_credits) + +final_gpa = +print('Semester GPA: %0.2f'% (final_gpa)) \ No newline at end of file