From 5bd2bdb14c2e044326c82f335c677ac958388bdd Mon Sep 17 00:00:00 2001 From: pythonites <73133008+pythonites@users.noreply.github.com> Date: Sat, 24 Oct 2020 22:26:50 +0530 Subject: [PATCH] Update factors_of_a_number.py --- codes inside/factors_of_a_number.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/codes inside/factors_of_a_number.py b/codes inside/factors_of_a_number.py index 27ea587..f14bcb4 100644 --- a/codes inside/factors_of_a_number.py +++ b/codes inside/factors_of_a_number.py @@ -9,3 +9,9 @@ def print_factors(n): num = int(input("enter a number: ")) #taking input from user print_factors(num) #calling function + +""" +Points to Ponder: +1. def keyword +2. % and == operators +"""