From 27a862bb77db37b48c573ece821e7dd30b824949 Mon Sep 17 00:00:00 2001 From: waldek Date: Mon, 2 May 2022 16:24:50 +0200 Subject: [PATCH] fixes image of flowchart --- learning_python3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learning_python3.md b/learning_python3.md index e9d8590..f63d11a 100644 --- a/learning_python3.md +++ b/learning_python3.md @@ -1264,7 +1264,7 @@ While they might look scary, don't overthink it, you'll get used to them very qu Logical procedures can be drawn out with flow charts. An example can be seen in the image below. -[flowchart while loop](./assets/flowchart_while_01.png) +![flowchart while loop](./assets/flowchart_while_01.png) ⛑ **When testing out an infinite loop it's sometimes handy to insert a `time.sleep` in it to slow down the execution a bit so you can wrap your head around what's happening.**