[Tutor] Help with loops

2016-01-05 Thread Chelsea G
I need to create a loop to print out the most common phrases with the counts 5 or greater and the rest to be bucketed into other category. How do I write the loop to print out the common phrases that have counts of 5 or more? This is my code so far: import csv#from sys import argvfrom collections

[Tutor] HELP!!

2016-01-12 Thread Chelsea G
So I am importing a csv file to textfile and the first column is product names and the second is a description of each. I am trying to find the sum of all descriptions using sum(c.values)). Here is my code so far: import csv import json import sys #from sys import argv from collections import defa

[Tutor] Help!

2016-01-15 Thread Chelsea G
Hi, So what I am working on is taking a csv file and only taking 2 columns from the spreadsheet and out putting that to a text file. Then taking those two columns and organize them by product(key) and outputting the description(values) that are associated. Some products have a lot of duplicate desc

[Tutor] Help!

2016-01-15 Thread Chelsea G
Hi, So what I am working on is taking a csv file and only taking 2 columns from the spreadsheet and out putting that to a text file. Then taking those two columns and organize them by product(key) and outputting the description(values) that are associated. Some products have a lot of duplicate desc

[Tutor] Help!

2016-01-25 Thread Chelsea G
Hi, I am trying to create a keyword search, so that someone can type in a key phrase and then the output be the value with the key. I have some code already done but having some trouble getting it to work. import csv import json import sys from collections import defaultdict from collections impor

[Tutor] Help!

2016-01-26 Thread Chelsea G
Hi, I am working on a python script to automate reporting. And I am working on creating a keyword search. For example, if I want to search for the word Tool in the value and see what keys are associated with that. So say the value I have to search is Tool World and I want to know what key is associ

[Tutor] help!

2016-01-26 Thread Chelsea G
Hi, I am working on a python script to automate reporting. And I am working on creating a keyword search. For example, if I want to search for the word Tool in the value and see what keys are associated with that. So say the value I have to search is Tool World and I want to know what key is associ

[Tutor] Help

2016-01-26 Thread Chelsea G
Hi, I am working on a python script to automate reporting. And I am working on creating a keyword search. For example, if I want to search for the word Tool in the value and see what keys are associated with that. So say the value I have to search is Tool World and I want to know what key is associ

[Tutor] Help with printing to text file

2016-02-01 Thread Chelsea G
Hi, So I am trying to get my function search to print in a text file, but I can only get it to print to Powershell. I have tried several things to get it to print in its own text file but nothing I have tried is working. Can someone tell me what I am doing wrong? import csvimport sysimport jsonf

[Tutor] Help with error

2016-02-02 Thread Chelsea G
Hi, When I run my code I am getting an error it says "Attribute Error: Dictionary instance has no attribute 'search'. So the whole idea for my code is to input a csv file and output results that we want. This specific piece of code def search is to search the csv file for any keyword like 'issues'

[Tutor] File extension change

2016-02-02 Thread Chelsea G
Hi, So what I am working on is taking a csv file and only taking 2 columns from the spreadsheet and out putting that to a text file. Then taking those two columns and organize them by product(key) and outputting the description(values) that are associated. Some products have a lot of duplicate desc

[Tutor] date range

2016-02-02 Thread Chelsea G
Hi, So I am taking in a csv file with several rows and one of those rows in a date row. I am trying to see if I can read in a csv file and search for a certain date range like 1/2/2016 to 1/5/2016. Something like that or a bigger date range. And then I want to ouput the results to either another cs

[Tutor] Help with date range

2016-02-09 Thread Chelsea G
So what I am trying to do is take in a csv file and the format of the csv file is: something, something1, something2,something3, something4, something5, something6, something7. Then in the csv file I want to search for a certain range of dates like 1/3/2016 - 2/3/2016. I can get individual dates bu