Discover the answers to your questions at Westonci.ca, where experts share their knowledge and insights with you. Connect with a community of experts ready to provide precise solutions to your questions quickly and accurately. Join our Q&A platform to connect with experts dedicated to providing accurate answers to your questions in various fields.

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)