Explore Westonci.ca, the leading Q&A site where experts provide accurate and helpful answers to all your questions. Connect with a community of experts ready to help you find solutions to your questions quickly and accurately. Explore comprehensive solutions to your questions from knowledgeable professionals across various fields on our platform.

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)