Hello
Implement a program that prints out a simple greeting to the user, per the below.
$ python hello.py
What is your name?
David
hello, David
Getting Started
Log into cs50.dev, click on your terminal window, and execute cd
by itself. You should find that your terminal window’s prompt resembles the below:
$
Next execute
wget https://cdn.cs50.net/2022/fall/psets/6/sentimental-hello.zip
in order to download a ZIP called sentimental-hello.zip
into your codespace.
Then execute
unzip sentimental-hello.zip
to create a folder called sentimental-hello
. You no longer need the ZIP file, so you can execute
rm sentimental-hello.zip
and respond with “y” followed by Enter at the prompt to remove the ZIP file you downloaded.
Now type
cd sentimental-hello
followed by Enter to move yourself into (i.e., open) that directory. Your prompt should now resemble the below.
sentimental-hello/ $
Execute ls
by itself, and you should see hello.py
. If you run into any trouble, follow these same steps again and see if you can determine where you went wrong!
Specification
Write, in a file called hello.py
, a program that prompts a user for their name, and then prints hello, so-and-so
, where so-and-so
is their provided name, exactly as you did in Problem Set 1, except that your program this time should be written in Python.
Usage
Your program should behave per the example below.
$ python hello.py
What is your name?
Emma
hello, Emma
Testing
While check50
is available for this problem, you’re encouraged to first test your code on your own for each of the following.
- Run your program as
python hello.py
, and wait for a prompt for input. Type inDavid
and press enter. Your program should outputhello, David
. - Run your program as
python hello.py
, and wait for a prompt for input. Type inBernie
and press enter. Your program should outputhello, Bernie
. - Run your program as
python hello.py
, and wait for a prompt for input. Type inCarter
and press enter. Your program should outputhello, Carter
.
Execute the below to evaluate the correctness of your code using check50
. But be sure to compile and test it yourself as well!
check50 cs50/problems/2023/x/sentimental/hello
Execute the below to evaluate the style of your code using style50
.
style50 hello.py
How to Submit
In your terminal, execute the below to submit your work.
submit50 cs50/problems/2023/x/sentimental/hello