Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pages/events.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ <h3>Fedora Women's Day Event <small class="txt-red">at TBA</small></h3>

<div class="event">
<div class="event-time">
<h1 class="event-day">--</h1>
<h1 class="event-day">12</h1>
<p class="txt-red">Oct</p>
</div>
<div class="event-info">
<h3>PyMavs Hacktoberfest Day <small class="txt-red">at TBA</small></h3>
<p class="event-paragraph">PyMavs will be working together as a community to partake in DigitalOcean's Hacktoberfest on [DATE] [Location]. <span style="font-weight: bold">All </span> skill levels are welcome to join us!</p>
<h3>PyMavs Hacktoberfest Day <small class="txt-red">at Nedderman Hall</small></h3>
<p class="event-paragraph">PyMavs will be working together as a community to partake in DigitalOcean's Hacktoberfest on Oct 12th in 229 Nedderman Hall. <span style="font-weight: bold">All </span> skill levels are welcome to join us!</p>
<p>Learn more at <a style="text-decoration: none;" href="./hacktober.html" class="txt-blue">this link.</a></p>
<p><span style="font-weight: bold;">Location: </span> TBA</p>
<p><span style="font-weight: bold;">Location: </span> Nedderman Hall</p>
</div>
</div>

Expand Down
55 changes: 55 additions & 0 deletions skeleton.py
Original file line number Diff line number Diff line change
@@ -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))