Description Greetings! i Task: Write a program that will ask for the user's name and output their name mixed with a command line argument given as the greeting. Command line args will be formally introduced next week, however, you're encouraged to do some of your own research for this challenge! Python docs: https://docs.python.org/3/library/sys.html#sys.argv PYTHON 1 import sys 2 3 % e.g. $ python main.py foo bar 4 # Arguments would contain: 5 6 sys.argv[0] # => main.py 7 sys.argv[1] # => foo 8 sys.argv[2] # => bar Your program should read the greeting from command line arguments, ask the user for their name, and then output a custom greeting, like so: Example 1 $ python greet.py Yo! What's your name? Jamal Yo! Jamal Example 2 $ python greet.py "G'day" What's your name? Summer G'day Summer iTip: For G'day, be sure to include in double quotes, so Bash treats it as one argument.

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter3: Using Gui Objects And The Visual Studio Ide
Section: Chapter Questions
Problem 12RQ: A(n) _____________ is generated when a user interacts with a GUI object. a. error b. occasion c....
icon
Related questions
Question
Description
Greetings!
Task: Write a program that will ask for the user's name and output their name mixed with a command
line argument given as the greeting.
Command line args will be formally introduced next week, however, you're encouraged to do
some of your own research for this challenge! Python docs:
https://docs.python.org/3/library/sys.html#sys.argv
PYTHON
1 import sys
2
3 # e.g. $ python main.py foo bar
4 # Arguments would contain:
5
6 sys.argv[0] # => main.py
7 sys.argv[1] % => foo
8 sys.argv[2] # => bar
Your program should read the greeting from command line arguments, ask the user for their
name, and then output a custom greeting, like so:
Example 1
$ python greet.py Yo!
What's your name? Jamal
Yo! Jamal
Example 2
$ python greet.py "G'day"
What's your name? Summer
G'day Summer
Tip: For G'day, be sure to include in double quotes, so Bash treats it as one argument.
Transcribed Image Text:Description Greetings! Task: Write a program that will ask for the user's name and output their name mixed with a command line argument given as the greeting. Command line args will be formally introduced next week, however, you're encouraged to do some of your own research for this challenge! Python docs: https://docs.python.org/3/library/sys.html#sys.argv PYTHON 1 import sys 2 3 # e.g. $ python main.py foo bar 4 # Arguments would contain: 5 6 sys.argv[0] # => main.py 7 sys.argv[1] % => foo 8 sys.argv[2] # => bar Your program should read the greeting from command line arguments, ask the user for their name, and then output a custom greeting, like so: Example 1 $ python greet.py Yo! What's your name? Jamal Yo! Jamal Example 2 $ python greet.py "G'day" What's your name? Summer G'day Summer Tip: For G'day, be sure to include in double quotes, so Bash treats it as one argument.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 7 images

Blurred answer
Knowledge Booster
Concept of Threads
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,