From ef7de385c72aae0164d30255147fabb358262344 Mon Sep 17 00:00:00 2001
From: Zosoutsav <88942040+zosoutsav@users.noreply.github.com>
Date: Wed, 29 Jun 2022 15:59:46 +0545
Subject: [PATCH] Update 100+ Python challenging programming exercises for
 Python 3.md

added another question 101 following the structure of the documentation
---
 ...nging programming exercises for Python 3.md | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/100+ Python challenging programming exercises for Python 3.md b/100+ Python challenging programming exercises for Python 3.md
index c4ba62c4..b14be41b 100644
--- a/100+ Python challenging programming exercises for Python 3.md	
+++ b/100+ Python challenging programming exercises for Python 3.md	
@@ -1,4 +1,4 @@
-# 100+ Python challenging programming exercises for Python 3
+# 101 Python challenging programming exercises for Python 3
 
 ## 1. Level description
 ### Level 1	Beginner 
@@ -2158,4 +2158,20 @@ numlegs=94
 solutions=solve(numheads,numlegs)
 print(solutions)
 ```
+### Question 101
+Write a program to check the speed if speed is less than 70 reutrn ok 
+if speed is greater than 70 for each 5 increament add 2 demerit points and when the demerit point exceeds 12 points then suspend the liscence
+Solution:
+'''
+def speedChecker(speed): 
+    if speed < 70: 
+        print('ok') 
+    elif speed > 70: 
+        value = (speed - 70) // 5
+        print(f'your point is {value}')
+        if value > 12: 
+            print('your liscence has been suspended') 
+
+speedChecker(140) 
+'''