Perimeter of a rectangle can be found by multiplying 2 by sum of its length and width. You can refer Algorithm and flowchart of this program as well for better understanding.
Step1: Take two numeric values (length and width) from the user
Step2: Multiply by 2 to sum of both values and store result into a new variable
Step3: Display the result
End:This program is tested and executed using Atom IDE with Python 3.8 version. To find perimeter, we cast user input to float because input function returns string type value.