<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>While Loops Worksheet Solutions by matthew callaghan</title>
      <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476</link>
      <description>Post a solution to one of the while loops worksheet problems here (your choice). You are allowed to comment on other posts if you notice anything comment-worthy. </description>
      <language>en-us</language>
      <pubDate>2020-11-11 17:11:09 UTC</pubDate>
      <lastBuildDate>2020-11-17 13:48:15 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://padlet.net/icons/png/267e.png</url>
      </image>
      <item>
         <title>My Solution</title>
         <author>hvperlot1</author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927443650</link>
         <description><![CDATA[<div>count = 0</div><div>limit = int(input("What do you want to count to? "))</div><div><br></div><div>print("Let's count to", limit, "by 5's!")</div><div>input("\nPress enter to start counting. \n")</div><div><br></div><div>while count &lt;= limit:</div><div>    print("The count is at:",count)</div><div>    count += 5</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 14:59:55 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927443650</guid>
      </item>
      <item>
         <title>Working solution w/extension</title>
         <author>yliu159</author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927509482</link>
         <description><![CDATA[<div>import random<br><br>randomNumsMax = random.randint(1,1000)<br>randomNumsMin = random.randint(1,randomNumsMax)<br>x = randomNumsMin<br>for y in range(randomNumsMax-randomNumsMin+1):<br><br>    if x%3 == 0 and x%5 == 0:<br>        print("Fizzbuzz")<br>    elif x%3 == 0:<br>        print("Fizz")<br>    elif x%5 == 0:<br>        print("Buzz")<br>    else:<br>        print(x)<br>    x+=1<br><br># print("The biggest number was: " + str(randomNumsMax))<br># print("The smallest number was: " + str(randomNumsMin))<br><br>#Here is the link: #https://repl.it/@Pythondude483/LoopChallenges#FizzBuzz.py</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 15:11:41 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927509482</guid>
      </item>
      <item>
         <title>Delilah M</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927531023</link>
         <description><![CDATA[<div>import random</div><div>print("This is the magic 8 ball!")</div><div>print("Give it a shake!")</div><div>print()</div><div>print("The magic 8 ball says...")</div><div>i = 0</div><div>while i == 0:</div><div>   num = random.randint(1,5)</div><div>   if num == 1:</div><div>       print("Its your lucky day!\n")</div><div>   elif num == 2:</div><div>       print("Sorry, today will be a bad day :( \n")</div><div>   elif num == 3:</div><div>       print("Something big will happen today!\n")</div><div>   elif num == 4:</div><div>       print("Someone unexpected will reach out to you!\n")</div><div>   elif num == 5:</div><div>       print("You will laugh a lot today! XD\n")</div><div>   again = input("Do you want to try again? ")</div><div>   if again == "yes":</div><div>       print("\nThe magic 8 ball says...")</div><div>   elif again == "no":</div><div>       i = 1</div><div>print("Have a good day!")</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 15:15:40 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927531023</guid>
      </item>
      <item>
         <title>Michael O</title>
         <author>mcodeh11</author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927531624</link>
         <description><![CDATA[<div>amount = 0.01</div><div>day = 1</div><div>total = 0.01<br>while day &lt; 30:</div><div>	amount *= 2</div><div>	total += amount<br>        day += 1</div><div>	if day == 15:</div><div>		print(“You have paid $” + str(total) , “after 15 days.”)</div><div>	if day == 30:</div><div>		print (“You have paid $” + str(total) , “after 30 days.”)</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 15:15:46 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927531624</guid>
      </item>
      <item>
         <title>Selina L</title>
         <author>sling9_2</author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927626444</link>
         <description><![CDATA[value = 0
limit = int(input("What do you want the limit to be? "))

print("\nThis program will count to" , limit , "by 5s.")
input("Press enter to start the count.")
print()

while value &lt; limit:
	print(value, end=" ")
	value += 5

input("\n\nPress enter to exit.")]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 15:32:54 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927626444</guid>
      </item>
      <item>
         <title>Carson Marlar </title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927701758</link>
         <description><![CDATA[<div>value = 0<br>limit = int(input("What do you want to count to? "))</div><div><br></div><div>print("Let's count to", limit, "by 5's!")</div><div>input("\nPress enter to start counting. \n")</div><div><br></div><div>while count &lt;= limit:</div><div>    print("The count is at:",count)</div><div>    count += 5</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 15:46:36 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927701758</guid>
      </item>
      <item>
         <title>Nathan Hernandez</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927723769</link>
         <description><![CDATA[<div>Value = 0<br>limit = int(input("What do you want to count to? "))<br><br>print("Let's count to", limit, "by 5's!")<br>input("\nPress enter to start counting. \n")<br><br>while count &lt;= limit:<br>    print("The count is at:",count)<br>    Value += 5</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 15:50:36 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927723769</guid>
      </item>
      <item>
         <title>Luke G.</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927816712</link>
         <description><![CDATA[<div>amount = 0.01</div><div>day = 1</div><div>ttl = 0.01</div><div>while (day &lt; 30):</div><div>    day += 1</div><div>    amount *= 2</div><div>    ttl += amount</div><div>    if (day == 15):</div><div>        print("on day 15 <br>        you've given away:<br>        $" + str(ttl))</div><div>print("on day 30 you've given away: $" + str(ttl))</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 16:07:53 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927816712</guid>
      </item>
      <item>
         <title>Ryan Hyun</title>
         <author>rmhyun1</author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927908897</link>
         <description><![CDATA[<div>value = 0<br>limit = int(input("What do you want to count to? "))<br><br>print("Let's count to", limit, "by 5's!")<br>input("\nPress enter to start counting. \n")<br><br>while count &lt;= limit:<br>    print("The count is at:",count)<br>    Start += 5</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 16:24:27 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927908897</guid>
      </item>
      <item>
         <title>Reilly Nawrocki</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927974252</link>
         <description><![CDATA[<div>counter=0<br><br>limit=int(input("What is the limit? "))<br>print("Let's count to " + str(limit))<br>input("\nPress enter to start counter.\n")<br><br>while counter&lt;limit:</div><div>    print("The count is at:", counter)</div><div>    counter+=5</div><div>input("\nPress enter to continue\n")</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 16:35:58 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/927974252</guid>
      </item>
      <item>
         <title>Matthew Ru</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928046589</link>
         <description><![CDATA[<div>def fizzOrBuzz(upperBound):</div><div>    n=1</div><div>    while n &lt;= upperBound:</div><div>        if n % 3 == 0 and n % 5 == 0:</div><div>            print("FizzBuzz")</div><div>        elif n % 5 == 0:</div><div>            print("Buzz")</div><div>        elif n % 3 == 0:</div><div>            print("Fizz")</div><div>        else:</div><div>            print(n)</div><div>        n += 1</div><div><br></div><div>num = float(input("What upper bound number? "))</div><div>fizzOrBuzz(num)</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 16:48:28 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928046589</guid>
      </item>
      <item>
         <title>Jonathan Wang</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928059661</link>
         <description><![CDATA[<div>print("I will pay you 1 cent today. Tomorrow I will give you double that amount. The day after I will give you double that amount, and so on. Once I pay you for 30 days, I will receive an A in Computer Programming class.")<br>amount = 1<br>day = 0<br>total = 0<br>while day &lt; 31:<br>	total = amount + total<br>	amount *= 2<br>	day += 1<br>	dollars = total / 100<br>	if day == 15:<br>		print("I have paid ${:.2f} by day 15.".format(dollars))<br><br>print("I have paid ${:.2f} by day 30.".format(dollars))</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 16:50:47 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928059661</guid>
      </item>
      <item>
         <title>Aayan Shihab</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928074757</link>
         <description><![CDATA[<div>import random <br>shake = 0 <br>While True: <br>   input("Enter if you want to shake the magic 8 ball:") <br>shake = random.randint(1, 3)<br>print(shake) <br>if shake == "1": <br>    print("Biden wins the election.") <br>elif shake == "2": <br>    print("Trump wins the election.") <br>else: <br>    print("Nancy Pelosi wins the election.") <br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 16:53:35 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928074757</guid>
      </item>
      <item>
         <title>Supriya Navnith</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928144795</link>
         <description><![CDATA[<div>import random</div><div><br></div><div># indentify variables</div><div>counter = 0</div><div>shake = 0</div><div><br></div><div># output</div><div>while counter &lt;= shake:</div><div>    fortune = random.randint(1, 3)</div><div>    if fortune == 1:</div><div>        print("A dubious friend may be an enemy in camouflage.")</div><div>    elif fortune == 2:</div><div>        print("A faithful friend is a strong defense.")</div><div>    else:</div><div>        print("Nothing is impossible to a strong heart.")</div><div>    repeat = str(input("Would you like to shake again? (y or n) "))</div><div>    if repeat == "y":</div><div>        shake += 1</div><div>        counter += 1</div><div>    else:</div><div>        input("\nPress enter to exit.\n")</div><div>        break</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 17:06:13 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928144795</guid>
      </item>
      <item>
         <title>Maddie Piar</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928179857</link>
         <description><![CDATA[<div>counter = 0<br>limit = (input("Lets count by 5s. What should we count to? "))<br>limit = int(limit)<br>input("\nPress enter to start the counter\n")<br>while counter &lt; limit :<br>  print("The count is at:", counter)<br>  counter += 5</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 17:12:07 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928179857</guid>
      </item>
      <item>
         <title>Liam Ratz</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928284237</link>
         <description><![CDATA[<div>end = int(input("What do you want to count to? "))</div><div>num = 0</div><div><br></div><div>print("Let's count to", end, "by 5's")</div><div><br></div><div>input("\n Press enter to start counting. \n")</div><div><br></div><div>while num &lt;= end:</div><div>  print("The count is at: ",num)</div><div>  num += 5</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 17:30:55 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928284237</guid>
      </item>
      <item>
         <title>Tillie Inglis</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928348009</link>
         <description><![CDATA[<div>counter = 0<br>limit = int(input("what number do you want to count to? ")<br><br>print("Let's count to", limit, "by 5's! ")</div><div>input("\nPress enter to start counting. \n")</div><div><br></div><div>while counter &lt;= limit:</div><div>    print("The counter is at:",counter)</div><div>    counter += 5</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 17:42:32 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928348009</guid>
      </item>
      <item>
         <title>Nichole Zhou</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928480859</link>
         <description><![CDATA[import random
uh = 0
count = 0

input("press enter to shake the magic 8 ball")
while uh &lt; 10:
    ball = random.randrange(1,7)
    if ball == 1:
        print("\nno way lol")
    elif ball == 2:
        print("\nit is decidedly so")
    elif ball == 3: 
        print("\ntry again later")
    elif ball == 4: 
        print("\nwithout a doubt")
    elif ball == 5:
        print("\nis this a joke")
    elif ball == 6: 
        print("\nprobably not")
    count += 1 
    print("you have asked", count, "questions")
    if count &gt; 20:
        print("what are you doing with your life")
    input("press enter to try again")]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 18:06:29 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928480859</guid>
      </item>
      <item>
         <title>my solution</title>
         <author>mirose2</author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928757162</link>
         <description><![CDATA[<div>counter=0</div><div>limit=int(input(“what would you like to choose for the numbers limit?”))</div><div>print(“lets count to the limit by 5’s”)</div><div>input(“press enter to start the count”)</div><div>while counter&lt;=limit:</div><div>	print(“the count is at:”,counter)</div><div>	counter+=5</div><div>input(“press enter to exit”)</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 18:58:13 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928757162</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928853480</link>
         <description><![CDATA[print ("Welcom to the loop of 5's!")
end =int( input( "Enter the limit, a multiple of 5 between 0-50: "))
count = 0 

while count &lt;= end:
	print ("The count is at " , count)
	count += 5]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 19:17:15 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928853480</guid>
      </item>
      <item>
         <title>Nikki Bashaw</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928856512</link>
         <description><![CDATA[<div>print ("Welcom to the loop of 5's!")</div><div>end =int( input( "Enter the limit, a multiple of 5 between 0-50: "))</div><div>count = 0 </div><div><br></div><div>while count &lt;= end:</div><div>    print ("The count is at " , count)</div><div>    count += 5</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 19:17:53 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928856512</guid>
      </item>
      <item>
         <title>Sunit Mistry</title>
         <author>scmistry1</author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928887688</link>
         <description><![CDATA[<div>limit = int(input("What number do you want to stop counting at?:"))</div><div>counter = 0</div><div>while counter != limit:</div><div>    counter += 5</div><div>    print(counter)</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 19:24:17 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928887688</guid>
      </item>
      <item>
         <title></title>
         <author>scmistry1</author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928888271</link>
         <description><![CDATA[limit = int(input("What number do you want to stop counting at?:"))
counter = 0
while counter != limit:
    counter += 5
    print(counter)]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 19:24:24 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928888271</guid>
      </item>
      <item>
         <title>Alex Taylor</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928937195</link>
         <description><![CDATA[<div>counter = 0<br>limit = (input("Lets count by 5s. What do you want to count to? "))<br>limit = int(limit)<br>input("\nPress enter to start the counter\n")<br>while counter &lt;= limit :<br>  print("The count is up to:", counter)<br>  counter += 5</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 19:34:04 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928937195</guid>
      </item>
      <item>
         <title>Alex Fisher</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928958305</link>
         <description><![CDATA[<div>count = 0  </div><div>limit = int(input("What multiple of 5 should be the upper limit? "))</div><div><br></div><div>print("\nLets count to", limit,  "by 5's!") </div><div>input("\nPress enter to start the counter!\n") </div><div><br></div><div>while count &lt;= limit :  </div><div>    print("the count is at", count) </div><div>    count += 5 </div><div><br></div><div>input("\nPress enter to continue.\n")</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 19:38:21 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928958305</guid>
      </item>
      <item>
         <title>Sean Sullivan</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928970417</link>
         <description><![CDATA[<div>num = 0</div><div>end = int(input("How long is this list of numbers? "))</div><div><br></div><div>while num &lt; end:</div><div>    num += 1</div><div>    if num % 3 == 0 and num % 5 == 0:</div><div>       print("FizzBuzz")</div><div>    elif num % 3 == 0:</div><div>        print("Fizz")</div><div>    elif num % 5 == 0:</div><div>        print("Buzz")</div><div>    else:</div><div>        print(num)</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 19:40:54 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/928970417</guid>
      </item>
      <item>
         <title>Labib Shihab</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929109498</link>
         <description><![CDATA[<div>counter = 0</div><div>print("This is a program to help you count by 5's.")</div><div>limit = int(input("What would you like the limit to be? (limit has to be in 5's) "))</div><div>if limit%5 != 0:</div><div>    print("The limit is not divisible by 5.")</div><div>else:</div><div>    while counter != limit:</div><div>        print(counter)</div><div>        counter +=5</div><div>    </div><div><br></div><div>print(limit)<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 20:12:51 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929109498</guid>
      </item>
      <item>
         <title>Alex Esser       counter = 0        limit = int(input(&quot;What do you want the limit in the 5&#39;s range to be? &quot;))         print(&quot;\nThe counter is at&quot;,counter,&quot;\n&quot;) print(&quot;The limit is at&quot;,limit,&quot;\n&quot;) input(&quot;Press enter to count.\n&quot;)         while counter &lt; limit:   	  print(counter)	 counter += 5        </title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929213987</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 20:39:35 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929213987</guid>
      </item>
      <item>
         <title>Sam Stefanov</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929280791</link>
         <description><![CDATA[<div>num = 0</div><div>terminal = input("Selected a terminal value that is divisible by 5 ")</div><div>terminalx = int(terminal)</div><div><br></div><div>if terminalx % 5 == 0:</div><div>    while num != terminalx:</div><div>        print(num)</div><div>        num += 5</div><div>elif terminalx % 5 != 0:</div><div>    print("Please enter a number that is divisible by 5")</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 20:58:08 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929280791</guid>
      </item>
      <item>
         <title>Dingjia Shen</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929359805</link>
         <description><![CDATA[<div>counter = 0<br>limit = int(input('What should be the limit? Give a number. '))<br>while counter &lt;= limit:<br>    print(counter)<br>    counter += 5<br>else:<br>    print('The number has reached the limit.')</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 21:22:39 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929359805</guid>
      </item>
      <item>
         <title>Liz Urso</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929484307</link>
         <description><![CDATA[<div>amount = 0.01</div><div>total = 0</div><div>day = 1</div><div><br></div><div>print("Lets count how much you will owe your Computer Programming teacher.")</div><div>print("\nPress enter to start the count.\n")</div><div><br></div><div>while day &lt; 31:</div><div>    day += 1</div><div>    amount *= 2</div><div>    total += amount</div><div>    total = round(total,2)</div><div>    if day == 15:</div><div>        print("On day 15, you will have paid $"+str(total))</div><div>print("On day 30, you will have paid $"+str(total))</div><div><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-16 22:07:27 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929484307</guid>
      </item>
      <item>
         <title>Jayden Berg</title>
         <author>jpberg</author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929743554</link>
         <description><![CDATA[<div>limit = int(input("Enter limit as a multiple of 5: "))</div><div><br></div><div>num = 0</div><div><br></div><div>while num != limit:</div><div>    num += 5</div><div>    print(num)</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-17 00:29:10 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929743554</guid>
      </item>
      <item>
         <title>Mum Yulbarsova</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929796187</link>
         <description><![CDATA[<div>counter = 0</div><div>limit = int(input("Enter your limiting value: "))</div><div><br></div><div>print("Starting value:" , counter , "\nEnding value:" , limit)</div><div><br></div><div>while (counter + 5) &lt; limit:</div><div>    counter += 5 </div><div><br></div><div>print(counter)</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-17 00:55:47 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929796187</guid>
      </item>
      <item>
         <title>Rayhona Nasriddinova</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929813505</link>
         <description><![CDATA[<div>limit = int(input("What number would you like to stop at?: "))</div><div>counter =  0</div><div><br></div><div>print("Your starting value is:",counter)</div><div>print("Your limiting value is:",limit)</div><div><br></div><div>while counter + 5 &lt; limit:</div><div>    counter += 5</div><div>    print("You're currently at:", counter)</div><div><br></div><div>print()</div><div>print("Your final outcome is:",counter)</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-17 01:05:18 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/929813505</guid>
      </item>
      <item>
         <title>Annie Wittwer</title>
         <author>amwittwer</author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/930116956</link>
         <description><![CDATA[<div>count=0<br>while count&lt;20:<br>    count=count+1<br>    if count %3==0 and count %5==0:<br>        print("fizzbuzz")<br>    elif count %5==0:<br>        print("buzz")<br>    elif count % 3==0:<br>        print("fizz")<br>    else:<br>        print(count)<br><br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-17 04:08:32 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/930116956</guid>
      </item>
      <item>
         <title>Benjamin Mathew</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/930266687</link>
         <description><![CDATA[<div>num = 0</div><div>while num &lt;= 20:</div><div>    print("\nYou're number is", num)</div><div>    </div><div>    if (num % 3) == 0 and (num % 5) == 0 and num != 0:</div><div>        print("FizzBuzz")</div><div>    elif (num % 3) == 0 and num != 0: </div><div>        print("Fizz")</div><div>    elif (num % 5) == 0 and num != 0:</div><div>        print("Buzz")</div><div>    else:</div><div>        print()</div><div>    num += 1    </div><div>#extension</div><div>import random</div><div>count = 0</div><div>num1 = random.randint(0,1000)</div><div>print("Your limit is", num1)</div><div>while count &lt;= num1:</div><div>    print("\nYou're number is", count)</div><div>    </div><div>    if (count % 3) == 0 and (count % 5) == 0 and count != 0:</div><div>        print("FizzBuzz")</div><div>    elif (count % 3) == 0 and count != 0: </div><div>        print("Fizz")</div><div>    elif (count % 5) == 0 and count != 0:</div><div>        print("Buzz")</div><div>    else:</div><div>        print()</div><div>    count += 1  </div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-17 05:26:58 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/930266687</guid>
      </item>
      <item>
         <title>limit = float(input(&quot;Please keep the integer a number which 5 can get to: &quot;))counter = 0while counter &lt;= limit:  print(&quot;The count is at:&quot;, counter)  counter += 5</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/931588634</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2020-11-17 13:40:27 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/931588634</guid>
      </item>
      <item>
         <title>Siyu</title>
         <author></author>
         <link>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/931594215</link>
         <description><![CDATA[<div>limit = int(input("what is your limit"))<br>n = 0<br>while n &lt;= limit:<br>    n += 5<br>print("\nthe last number by 5 before your limit is ",n-5)</div>]]></description>
         <enclosure url="" />
         <pubDate>2020-11-17 13:41:41 UTC</pubDate>
         <guid>https://padlet.com/mcallaghan33_2/920q0p8g8paf2476/wish/931594215</guid>
      </item>
   </channel>
</rss>
