Insert a shape=rectangle and write in this shape"my shape".
Answers
Answered by
5
Answer:
#Python
Explanation:
a = input("enter shape name ")
if a=="rectangle" :
print("my shape")
else:
print("not my shape")
Similar questions