python numeric-operations | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

python numeric-operations

numeric-operations in python

14th Oct 2019, 11:45 AM
Naryan Poudel
Naryan Poudel - avatar
7 Answers
+ 9
+ : Addition - : Subtraction * : Multiplication /: Division % : Modulus ** : Power
1st Mar 2020, 10:31 AM
Ankush Tarika
Ankush Tarika - avatar
+ 8
Basic numeric-operations * = Multiplication / = Division + = Addition - = Subtraction % = Reminder of division More on Google, search CheatSheet! There are many operation out there! Contact me! If something wrong or further question...
14th Oct 2019, 11:50 AM
Kiman Heng
Kiman Heng - avatar
+ 3
very good. thank you
12th Oct 2020, 4:32 PM
Emmanuel Rodas
Emmanuel Rodas - avatar
+ 1
Duplicate it pls add floor division (//) in your post
29th Nov 2019, 10:55 AM
mohamed yasar
+ 1
+ : Addition - : Subtraction * : Multiplication / : Division ** : Power // : Floor Division % : Remainder
12th Sep 2020, 10:17 AM
JustSharpPlease
+ 1
1):+ addition 2):- subtraction 3):* multiplication 4):/,// division with (/) will give you a float value by default for example print(4/2) output 2.0 but if you use (//) will give you an integer value for example print(4//2) output 2 try it bro on code playground. 5): ** power 6): % remainder
30th Oct 2020, 8:24 PM
Fazal Rahim
Fazal Rahim - avatar
16th Jan 2022, 8:27 PM
Dinushika Nishadi
Dinushika Nishadi - avatar