In this one speaks and other guy answers true or false based on if first and last letter of word is same or different

Viewed 19
name=str(input())`
if name.startswith() == name.endswith():
print("false")`
else:
print("true")

#Printing true or false
0 Answers
Related