From 319fb24e5b610e3c5f8ea8278735164609754954 Mon Sep 17 00:00:00 2001 From: Guy Hartuv Date: Wed, 21 Oct 2020 15:58:34 +0300 Subject: [PATCH] Minor fix of a homework task Signed-off-by: Guy Hartuv --- .../exercises/03_Variables_and_datatypes/homework.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/course_materials/exercises/03_Variables_and_datatypes/homework.md b/docs/course_materials/exercises/03_Variables_and_datatypes/homework.md index 3bb1eb5f..a9ed3909 100644 --- a/docs/course_materials/exercises/03_Variables_and_datatypes/homework.md +++ b/docs/course_materials/exercises/03_Variables_and_datatypes/homework.md @@ -30,10 +30,11 @@ Finally, give a short answer to each question in calculation.txt file ### variables.py - Exercise 3 -1. Accept two numbers from the user (using input) and calculate multiplication (*) -2. Accept two numbers from the user (using input) and calculate Subtract (-) -3. Accept two numbers from the user (using input) and calculate Divide (/) -4. Accept two numbers from the user (using input) and calculate Modulus (%) +Accept two numbers from the user (using input) and: +1. Calculate multiplication (*) of the numbers +2. Calculate Subtract (-) of the numbers +3. Calculate Divide (/) of the numbers +4. Calculate Modulus (%) of the numbers ## Strings