write the output from the following code:
t=('a','b','c','A','B')
print (max(t))
print (min(t))
Answers
Answered by
2
Answer:
hello,
Explanation:
t=('a','b','c','A','B')
print (max(t))
'c'
print (min(t))
'A'
_________________________________________
hope it helps you
please mark brainliest
@ItzSnowySecret07
Similar questions