This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example 1 | |
print("Hello World!") | |
x = 5 | |
y = x + 3 | |
print(y) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run: python3 attendance-to-roster.py teamsFile rosterFile -d dateHeader | |
# For example, | |
# python3 attendance-to-roster.py cs100/saved-TeamsAttendance.csv cs100/roster.csv -d 08-24 | |
# | |
# Input : teamsFile, an attendance list downloaded from MS Teams. For example, | |
# Full Name User Action Timestamp | |
# Heather Guarnera Joined 8/24/2020, 9:10:25 AM | |
# Joe Schmoe Joined 8/24/2020, 9:10:31 AM | |
# | |
# Input : rosterFile, an existing roster where attendance for the day will be written. For example, |