Page 1 of 1

Solve the errors in the following code.

Posted: Sun May 15, 2022 1:46 pm
by answerhappygod
Solve the errors in the following code.
Solve The Errors In The Following Code 1
Solve The Errors In The Following Code 1 (15.94 KiB) Viewed 56 times
def get_color(version); If version is "blue" return True (boolean). Otherwise, return false. def get_num(version) : Given a string version, return 3 if version is "blue". Otherwise, return -1. pass if -name = main__": assert get_color(...) == True assert get_color(...) == False assert get_num(...) == ... assert get_num(...) == -1