Welcome to Westonci.ca, your ultimate destination for finding answers to a wide range of questions from experts. Discover detailed answers to your questions from a wide network of experts on our comprehensive Q&A platform. Get quick and reliable solutions to your questions from a community of experienced experts 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)