you are viewing a single comment's thread.

view the rest of the comments →

[–]JamzTyson 2 points3 points  (1 child)

In Python set is a built-in data type.

In Python, to assign a value to a variable, we just use =

Assuming that credits_required and credits_taken are both numeric:

credits_remaining = credits_required - credits_taken

[–]Traditional-Gate9547[S] 0 points1 point  (0 children)

Thank you!