- 1
What is the meaning of this // or **this
4 ответов
+ 5
Please tag the relevant programming language and give an example.
If you mean Python operators:
// is floor division
** is power of
Please review the previous lessons.
+ 1
Example of what given by Lisa
6//4=1 and 2**3=8
+ 1
Please give relevant tags next time
But in python // is floor division wich gives you the answer with out ramainder example 21 //9 =2
** is to the power of example 5** 2 =10
0
Thank you