Hi can anyone please help me with this, I don’t know what I did wrong
Code: order_263_r = print(263 % 11)
Code Link: https://www.codecademy.com/courses/learn-python-3/lessons/python-hello-world/exercises/modulo
Hi can anyone please help me with this, I don’t know what I did wrong
Code: order_263_r = print(263 % 11)
Code Link: https://www.codecademy.com/courses/learn-python-3/lessons/python-hello-world/exercises/modulo
Per instructions, " Find the remainder by calculating 263 modulo 11 and store the result in a variable called order_263_r
.
Print out order_263_r
."
So, first you have to define the variable, order_263_r
, second, you have to print the variable. These are two separate actions.
Thank you so much for your help