[Solved] Changing bool value to word using ToString method [duplicate]


Instead of Workday.ToString(), you might try to print
Workday ? "yes" : "no" , which is a short if else statement which prints “yes” when Workday is True, “no” otherwise.
Hope this helps!

solved Changing bool value to word using ToString method [duplicate]