[Edhesive] 4.1 Code Practice
Write a program that asks the user to enter a name, and then prints Nice to meet you NAME. Your program should repeat these steps until the user inputs Nope.

Sample Run:

Please enter a name: (Nope to end) Antonio
Nice to meet you Antonio
Please enter a name: (Nope to end) Jonathan
Nice to meet you Jonathan
Please enter a name: (Nope to end) Tyler
Nice to meet you Tyler
Please enter a name: (Nope to end) Brianne
Nice to meet you Brianne
Please enter a name: (Nope to end) Nope

[Edhesive] 4.1 Code Practice Write A Program That Asks The User To Enter A Name, And Then Prints Nice

Answers

Answer 1

Answer:

name = input("Enter a name, type Nope to end loop: ")

while (name != "Nope"):

   print("Nice to meet you " + name)

   name = input("Enter a name, type Nope to end loop: ")

   

   print("Done")

Explanation:

It works on python/Edhesive perfectly!

Answer 2

Following are the Python program to an input string value and print value with the message:

Program Explanation:

Defining the while loop that runs condition is true.Defining a variable "user_name" that uses the input method to input value from the user-end.After input value the if conditional block is used that checks input value is equal to "Nope" when the condition is true it uses the break keyword and print values with the message.

Program:

while True:#defining loop that runs when condition is true

   user_name = input('Enter your name:(Nope to end): ')#defining a variable user_name that input value

   if user_name == 'Nope':#defining if block that checks input string value equal to Nope  

       break#using break keyword

   print('Nice to meet you {}'.format(user_name))#print message

Output:

Please find the attachment.

Learn more:

brainly.com/question/18502091

[Edhesive] 4.1 Code Practice Write A Program That Asks The User To Enter A Name, And Then Prints Nice

Related Questions

What capital city is located at 33 s and 71w?

Answers

Answer:

jmkk;

Explanation:

what is the chain reaction that occurs when a sound is created ​

Answers

The chain reaction is called sound waves

Can someone help me? Thanks.

Answers

Answer:with what exactly

Explanation:

Which of the following statements defines markup? A. Software used in creating a Web document B. Symbols or characters added to plain text in a document to indicate different attributes and elements C. Authoring language which converts text to language D. Coding system used to structure text files in a document translating it into a Web document

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

In this question, it is asked about the markup language. A markup language is a computer language that uses tags to define elements within a document. It is human-readable, meaning markup files contain standard words, rather than typical programming syntax. While several markup languages exist, the two most popular are HTML and XML. So, now we will explain which option defines the statement correctly.

A. Software used in creating a Web document (false).

A markup language is not software, it is a language that can be used mostly in web development.

B. Symbols or characters added to plain text in a document to indicate different attributes and elements (True).

Because HTML and XML are markup languages, in which symbols or characters are added to plain text in a document to indicate different elements and attributes. For example, in HTML, we use "<" and">" symbol to indicate the attribute of Html document. such as to show paragraph we use "<p>"tag etc.

C. Authoring language which converts text to language(true)

Markup language converts text into browser readable language. For example, we write HTML (human-readable plain text document) which converted into the browser-readable format.

D. Coding system used to structure text files in a document translating it into a Web document (true).

for example, HTML is a markup language or you can say coding system, that can be used to structure text file in a way that can be easily understood by a web broweser.

Answer:

B. Symbols or characters added to plain text in a document to indicate different attributes and elements

Explanation:

The OS that has a Dock is the
Linux
Mac
Windows
MS DOS

Answers

Mac OS. As verified in the picture.

While some distros of Linux have docks, Mac OS started and is known for using a dock.

Answer:

Mac.

Explanation:

Which of the following is not a thing needed to make a network?
a)Network software b)Network devices c)Motherboard d)Cables

Answers

Answer:

d) cables is your answer

Answer:

Motherboard is not a thing needed to make network

What does it mean to clear a setting in a dialog box?
A) To print it
B) To turn it off
C) To delete it
D) turn it on

Answers

it would be c because you clean in it up

Select the correct navigational path to hide a worksheet.
Click the ____ tab on the ribbon to the Cells gallery.
Select ___ and use that drop-down menu to select ____.
Then Hide sheet.

Answers

Answer:

Home, Format, Hide & Unhide.

Explanation:

A person with a low number of white blood cells could have difficulty in fighting infections and A decrease in the number of lymphoid stem cells could result in a decrease in red blood cell.

What is nucleotide?

It is the sub units and buIlding blocks of DNA. It is made up of a five-sided sugar, phosphate group and then a nitrogen base.

These groups make the backbone of the DNA helix. If you look at a DNA helix, they make the side of the ladder or the side portion. They connect to a nitrogen base which make the steps of the ladder.  The type of sugar that is used in a DNA helix is called deoxyribose.

Nitrogen bases are the molecules that make up the steps of the ladders. There are four different nitrogen bases, namely; Guanine, Thymine,Adenine and Cytosine.

Pyrimidines are compounds that make a single 6-sided ring. Examples of pyrimidines are Cytosine and Thymine. Purines on the other hand make 5-sided and 6-sided rings.

Therefore, A person with a low number of white blood cells could have difficulty in fighting infections and A decrease in the number of lymphoid stem cells could result in a decrease in red blood cell.

Learn more about white blood cells on:

https://brainly.com/question/19202269

#SPJ5

What can be written to perform a certain number of iterations or to iterate until a specific result is achieved?
A. an ordered data structure
B. a for loop
C. a print function
D. an array​

Answers

Answer:

The answer to this question is given below in the explanation section. However, the correct option is B. i.e a for loop.

Explanation:

The correct answer to this question is for-loop. Beause, in the for loop is written to perform a certain number of iterations or to iterate until a specific result is achieved.

for example, to calculate the average of 10 numbers, we use the for loop to iterate statements written in its body 10 times to calculate the average.

when the specific numbers of the iteration are reached it will get terminated.

for example

for (int i=0; i<=10; i++)

{

// perfrom average, code

}

this loop iterate 10 times or less, when it reached above the limit it gets stopped.

however, the other options are not correct, because an ordered data structure is like a list of order data, print function print something to the user or on screen. while an array is like a list of data of the same data type.

Answer:

A For Loop

Explanation:

Edge 2020

What uses HTML hypertext links that users can click to access different locations or information?
A. Operating system
B. Domain name
C. Web page
D. Client program

Answers

I’m pretty sure it’s C. Web page

A computer program which uses hypertext markup language (HTML) hypertext links that users can click to access different locations or information is: C. Web page.

A hyperlink refers to an element in a hypertext markup language (HTML) document that provides a link (direct access) to another document, file, location, webpage, and an image.

In Computer science, a hyperlink can be used to directly link to the same path in a hypertext markup language (HTML) document or another HTML document such as a webpage.

Generally, you can insert a hyperlink that end users can click to access different locations or information in the following:

An email address A fileA webpage

In conclusion, a typical example of a hyperlink on a webpage is demonstrated below;

Learn more about hyperlink here: https://brainly.com/question/25760645

What is the hexadecimal equivalent of the decimal number 256?

Answers

Answer:

0.100 look it up

Explanation:

Which statement accurately defines the Quick Steps feature in Outlook?

It simplifies common tasks into one-step commands.
It allows a user to add multiple steps to common tasks.
It is only configured for tasks that are not frequently used.
It allows multiple users to add commands to a single mailbox.

Answers

Answer:

A

Explanation:

The statement accurately defines the Quick Steps feature in Outlook will be that it simplifies common tasks into one-step commands.

What is the Outlook?

The Tools menu is shown on the toolbar adjacent to the Actions menu under the Menus tab. When you select Tools, a drop-down menu with options like Send/Receive All Folders, Reject All, Com Add-Ins, Disable Items, Outlook Options, etc. appears.

You undoubtedly use Outlook every day and use some of its useful capabilities, including flags, categorize, and archive. Even if these capabilities already make it simple to handle your emails, there are other Outlook tools that can help you organize your emails even better.

The phrase "simplifies typical tasks into one-step commands" appropriately describes Outlook's Quick Steps feature.

More about the Outlook link is given below.

https://brainly.com/question/17457799

#SPJ6

3. The problem solving diagram displays how many parts.
A1
B.2
c.3
D.4

Answers

Answer:

3

Explanation:

Charts are often used in _____ to quickly represent data and help the readers understand the data.

Answers

Answer:

Explanation down below :)

Explanation:

The answer is reports.. . hope that helped!

A Career Cluster is a group of related careers true or false

Answers

Answer:

true

Explanation:

there are 16 different types so each cluster is related in some way.

A Career Cluster is a group of related careers or occupations that share common skills, knowledge, and pathways. This statement is true

These clusters are used in career exploration and education to organize and categorize careers based on similarities in the types of work they involve.

Each cluster encompasses a range of careers that share similar attributes and can be connected through similar educational pathways or skill sets.

For example, the STEM (Science, Technology, Engineering, and Mathematics) cluster includes careers such as biologist, software developer, engineer, and mathematician, all related to science and technology fields.

Career Clusters provide a useful framework for students and job seekers to explore and navigate various career options effectively.

Know more about Career Cluster:

https://brainly.com/question/8825832

#SPJ6

A person who leads a
group uses
skills.

Answers

Answer:

He uses skills to make sure he is good leader

Explanation:

Which is the primary outcome of innovation?


collaboration

creativity

change

profit

Answers

Answer:

change

Explanation:

because innovation is a change and that change could be anything

4.3 Code Practice: Question 1
Instructions
Grandma Ester normally gives you hugs for your birthday - one for every year old you are. When you turned 15, she squished you with 15 hugs! This year, she, unfortunately, cannot see you on your birthday, so instead, she wants to send you virtual hugs!

Create a program that prompts the user for how old they are turning and then using a loop, output a virtual hug for every year old they are.

The following prints a single “virtual hug.”

print("**HUG**")

Answers

in python 3:

age = int(input("How old are you turning? "))

i = 0

while i < age:

   print("**HUG**")

   i += 1

I hope this helps!

Why do IT professionals have strict legal and ethical standards?

A. The credentials they hold to perform their job.
B. The oath they took when they began their career.
C. The pressure put on them to behave a certain way.
D. The strategic role they play in an organization.

Answers

Answer:

The answer is B: The oath they took when they began their career.

Explanation:


As part of the IT department, you configure the employee workstations for your company. Your company's IT policies prioritize security ove
running active content. What should you disable in user's browsers to restrict active content?
А
Cookies
B
Pop-under windows
C
CSS
D
JavaScript

Answers

Answer:

A Cookies

Explanation:

I don't know if I'm right but I hope it is, but if not then can you help me

What is the internet ?



Answers

Answer:

internet is the connection of computers worldwide

Answer:

Explanation:

The internet is the wider network that allows computer networks around the world run by companies, governments, universities and other organizations to talk to one another.

20 POINTS


Why is important for film editors to have a knack for storytelling?


Increasingly, screen writers and film editor positions are filled by the same person.

There is no need for the film editor to have a knack for storytelling; in fact, this may be a drawback.

The film editor is responsible for editing the script if the screen writer has made any errors.

The film editor must weave many scenes and sections of scenes together to tell a cohesive story.

Answers

Answer:

The film editor must weave many scenes and sections of scenes together to tell a cohesive story

Explanation:

Forgive me if i am wrong

Which pane in PowerPoint contains images of the slides in the order they appear in the presentation?

Status pane
Thumbnail pane
Notes view
Normal view

Answers

Answer:

B. Thumbnail pane

Explanation:

on edg

Answer:

B. Thumbnail pane

Explanation:

skeet skeet i have lost my feet.

When Creating a FPS game what basic rules would you add?

Answers

Answer:

We should add:

Explanation:

Anything red must explode if shot. Fixed mounted guns must always face away from any potential flash points and be pretty much useless. Never bring a gun to a knife fight. Never run into a room that you have just thrown a flash bang into as the grenade only effects you.. Create a world that invites, encourages, and rewards smart thinking.The game world is the real world.packages are the best way to draw out campers, pop one out into open areas and pick people off as they inevitably try to steal it from you, then when they are all dead still in and claim your UAV (or ammo crate more often than not).The only thing you can ever rely on your team to do is, give away your position, run into your line of fire and friendly flash you.If you pick up the sniper or any other power weapon someone on your team will always teamkill you for it then miss with every shot they fire using it.

_____ are pictures that you can click on to tell your computer what to do.

icons
menus
applications
FATs

Answers

Answer:icons

Explanation:The reason it is icons is because icons can become pictures

Answer:

Icons

Explanation:

can create pictures by grouping together.

What is a good title for and about me project

Answers

Answer: MODERN TECHNOLOGY

Explanation: I don't know what your project is about, but I would assume since this is computer science that it is about technology.

The Research and Development Process has five steps what are they ?

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

There are five steps used in any research and development project.

Step 1 – Locating and Defining Issues or Problems and get an idea about what is needed

Step 2 – Designing the Research Project, How you will solve the problem or get the solution of the problem

Step 3 – Collecting Data.

Step 4 – Interpreting Research Data.  

Step 5 – Report Research Findings.

Question # 6
Multiple Choice
Of the following examples, which would be the most significant benefit of advancements in touch-screen technology?


A basketball coach could demonstrate plays to his team in 3D, thereby creating a better visual image in the minds of the players.

A heart surgeon could practice a complicated procedure using a stylus and 3D image of a human heart.

A kindergarten student could drag and drop letters into their appropriate spots, creating a powerful educational link in their minds.

A scientist could break apart a 3D model of the human cell and study each part independently to get a better understanding of how the body works.

Answers

Answer:

Explanation:

basketball

Which type of memory resides within a computer's CPU?
_____ memory resides within a computer's CPU.
(not multiple choice)

Answers

Main memory.

Main memory resides within a computer's CPU.

Answer:

Internal

Explanation:

Which page layout is most commonly used for a website with a large navigation menu?

wide column

fixed sidebar

featured graphic

square box

Answers

Answer: square box

Explanation:

That is the only relevant answer

Answer:

fixed sidebar

Explanation:

Other Questions
Suppose you run a software company and you want to determine if there is a difference between the 'debugging unit' (population 1) and 'after sales services unit' (population 2) by considering the return on investment for each unit. you have acsess to information from a random survey which is done for 24 companies for population 1 which reveals that the average return on investment (ROI) for each dollar you invest is.12, while for population, the survey is performed on 30 companies and the average ROI is found to be .30. You also know from the previously published results that the standard deviation for any ROI in the software industry is .25 What is the value of the test statistic for your research hypothesis? a. -1.3145.b. -1.2728.c. -2.3738.d. -2.2411.e. -2.6291. La nuit by Guy de maussapant rsum After learning how to fly, Wendy reduced her daily commute time by 75% Previously, her commute took m minutes. Which of the following expressions could represent Wendy's commute time, in minutes, after she learned how to fly? Help guys i don't know Ten facts from the Declaration of Independence . Which phrase matches the equation -3r + 5 = 28? a The product of three times a number equals twenty-eight.b The sum of three and a number times negative five gives twenty-eight.c The product of negative three and a number plus five equals twenty-eight.d The sum of negative five plus three times a number equals twenty-eight. The images below are an example of what? Black and White Images Orthographic Images Isometric Images O 3D Images What is the meaning of this sentence? "There are many ways to be a foreigner." Which two spheres are interacting when there is a rainbow ? Please help make you brainiest. what is the role of each branch of the federal government and explain how the three branches work as a check on each other. The goal of a statement of purpose is:A. to demonstrate that a hypothesis is wrongB. To list the materials needed for an experimentC. To calculate an average of two or more measurementsD.To indicate what is expected to be accomplished in doing an experiment How might scientific knowledge about monoculture farming affect societal decisions? Please be sure to answer in complete sentences. Help help help help help Select the equivalent expression (3^2x5^3 1. What is the Driving Mechanism of Continental Drift? how will you know that the equation is a quadratic how do fernando and barnardo first greet each other? 2. Timmy and Anita decide to organize a dodgeball tournament at lunch recess and they askthat any student from grade 6-8 who is interested to come to a meeting. At recess 24 grade6 students arrive along with 48 grade 7 students and 36 grade 8 students. Timmy and Anitadecide to create EQUAL teams but to keep the grades separate. What is the greatest numberof students on each team making sure that all of the teams are equal? How many teams arethen formed in each grade? What is the value of 0.15 divided by0.05? Which religion eventually had the heaviest influence on societies in both western and Eastern Africa IslamHinduismBuddhismChristianity Unscramble the sentences Ali's latest photo got 42 likes. this is 3 times as many likes as kate's latest photo. how many likes did kate's photo get ?