Code Monkey home page Code Monkey logo

py-work-with-file's Introduction

Work with files

Implement function create_report which will make a report using data from the market after a working day.

This method has two parameters:

  • data_file_name: str - you should read data from this file
  • report_file_name: str - you should write the result to this file

Input file has .csv format. CSV is a simple file format used to store tabular data. This type of file is very popular for storing information. So we will start working on it. CSV stands for "comma-separated values". Its data fields are most often separated or delimited by a comma.

For example, let's say you had a spreadsheet containing the following data:

operation type amount
supply 30
buy 10
buy 13
supply 17
buy 10

The above data could be represented in a CSV-formatted file as follows:

supply,30
buy,10
buy,13
supply,17
buy,10

Your task is to read all data from the input csv file, create a report and write it to the new file (the name of this file is the second parameter of the method).

Example of the report:

supply,47
buy,33
result,14

Explanation:

  • supply = 30 + 17 = 47
  • buy = 10 + 13 + 10 = 33
  • result = supply - buy = 47 - 33 = 14

Note:

The last line of the file may be empty and should not be processed

Please use terminal here, to avoid file path errors

py-work-with-file's People

Contributors

abnormaltype avatar ivanramyk avatar nattalli avatar masterpieceelbow avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.