Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Argument Parsing - 3/3 #142

Open
dpshelio opened this issue Nov 26, 2020 · 0 comments
Open

Argument Parsing - 3/3 #142

dpshelio opened this issue Nov 26, 2020 · 0 comments
Labels

Comments

@dpshelio
Copy link
Member

dpshelio commented Nov 26, 2020

Carrying on from the previous exercise, now we will change the options so instead of reading the numbers from the command line, they are read from text files (one number per line), and keeping the optional parameter to accept weights also as a file.

reading data from files

  1. Choose who in your team is sharing now! (pull the code from the previous exercise into your local repository)
    Hint: You need to add a new remote from your team member and pull their branch
  2. Create a new branch from the branch used in the previous exercise.
  3. Open the file squares.py. Make sure you can run it from a terminal with some input values!
  4. Look at the part of the file that is using argparse
  5. Modify the arguments so the data is read from a text file. Where the weights are still optional. The file should be runnable as python squares.py <file_numbers> --weights <file_weights> (where <...> should be replaced by the file of your choice).
    • Look at the working with data section to refresh how we read files in Python.
    • Modify the argparser arguments to receive file names instead of numbers.
    • Check the auto-generated help: python squares.py --help.
    • Check that you can run the file with the new form, whether you pass a weights file or not.
  6. Share your solution as a pull request mentioning this issue (by including the text Addresses #142 in the pull request description), remember to mention your team members too! (with @github_username)
@dpshelio dpshelio changed the title Argument Parsing Argument Parsing - 3/3 Nov 26, 2020
dpshelio added a commit that referenced this issue Nov 27, 2020
umitozmen added a commit to umitozmen/rse-classwork-2020 that referenced this issue Nov 30, 2020
nuttamas added a commit to nuttamas/rse-classwork-2020 that referenced this issue Dec 23, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants