Python console question

I put a print command inside my get_picture methods for the polygon_area-calculator challenge, and cannot figure out why the leading … appear before the “in get_picture_Rectangle” and “in get_picture_Square” strings.
Can someone explain why they appear? The console printout is shown below:

python main.py
50
26
Rectangle(width=3, height=10)
81
12.727922061357855
Square(side=4)
.in get_picture_Rectangle
line is 3
row is 51
Too big for picture.
.......in get_picture_Rectangle
line is 3
row is 7
....in get_picture_Square
line is 2
row is 2
...
----------------------------------------------------------------------
Ran 15 tests in 0.002s

OK

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36

Challenge: Polygon Area Calculator

Link to the challenge:

It would help to see your code. I suspect you aren’t supposed to use print.

Those are the results of the assertion-tests: a “.” meanst the test is passed, otherwise you’d get an “F”.
They add up to 15, just like it says at the end “Ran 15 tests” and you get an “OK” because no failures appeared.

Thank you for clearing that up! It bugs me when I don’t know what something means.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.