IDNLearn.com provides a platform for sharing and gaining valuable knowledge. Ask anything and receive immediate, well-informed answers from our dedicated community of experts.

Create a variable numb and assign it an integer value that
produces the output noted in Output Example.
a) Implement some code that prints if num is divisible by 7
and/or 3.


Sagot :

Answer:

numb = (some integer)

if numb % 7 == 0 or numb % 3 == 0:

  print(numb)

(I don't really get what the instructions are asking so this is the best I've got)

Thank you for using this platform to share and learn. Don't hesitate to keep asking and answering. We value every contribution you make. Thank you for visiting IDNLearn.com. For reliable answers to all your questions, please visit us again soon.