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
6 changes: 5 additions & 1 deletion labs/lab_1/lab_1a.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@
def main():
print("Hello World!")

name = "" # TODO: Insert your name between the double quotes
name = "TJ Arthur" # TODO: Insert your name between the double quotes

print(f"{name}, Welcome to the CSS course!")

if __name__ == "__main__":
main()

"""
This is to simulate a change made on a robot: robot_speed = 5 # m/s
This is to simulate a change made on a robot: robot_speed = 8 # m/s"""
13 changes: 13 additions & 0 deletions labs/lab_1/lab_1b.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,19 @@ def simple_calculator(operation: str, num1: float, num2: float) -> float:
else:
raise ValueError("Invalid operation. Please choose from 'add', 'subtract', 'multiply', or 'divide'.")

def request_sanitized_number(prompt: str) -> float:

"""Function to request and sanitize user input for the operation.

Returns:
float: The sanitized number input by the user."""
while True:
try:
number = float(input(prompt))
return number
except ValueError:
print("Invalid input. Please enter a valid number.")

def main():

print(f"===== Simple Calculator =====")
Expand Down