Answer:
false
Explanation:
Write a loop that continually asks the user what pets the user has until the user enters rock, in which case the loop ends. It should acknowledge the user in the following format. For the first pet, it should say You have a dog with a total of 1 pet(s) if they enter dog, and so on.
Sample Run
What pet do you have? lemur
What pet do you have? parrot
What pet do you have? cat
What pet do you have? rock
------------
Sample Output
You have a lemur with a total of 1 pet(s)
You have a parrot with a total of 2 pet(s)
You have a cat with a total of 3 pet(s)
In python 3:
total = 0
while True:
pet = input("What pet do you have? ")
if pet == "rock":
break
total += 1
print("You have a {} with a total of {} pet(s)".format(pet, total))
I hope this helps!
Answer:
pet = input(str("What pet do you have?"))
totalPets = 1
while(pet!="rock"):
print("You have a " + str(pet) + " with a total of " + str(int(totalPets)) + " pet(s)")
totalPets = totalPets+ 1
pet = input(str("What pet do you have?"))
Solution:
Look at the tabs and hover over images. are two great ways to find clues to locate commands on the ribbon.
There are six main categories for command which are; one-click, toggle, split buttons, drop-down and tick box. Categories can be mixed so it is useful to understand the basics to develop the Excel skills.
The ribbon is a user interface element created by Microsoft, which was introduced with Microsoft Office 2007. It is part of the "Microsoft Office Fluent" interface and combines the menu bar and toolbar into a single floating pane. By default, it is located at the top of the screen in Office applications, such as Access, Excel, PowerPoint, Word, and Outlook.
This is the required solution.
Answer:
Yes, it makes many people hide their lives or what they like to do. I say this because social media may say things are unacceptable, so then people will believe and try to hide their personality.