Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: write each line of a text file into separate text files and save with different names
Post: RE: write each line of a text file into separate t...

nvm. I solved it by enumerating over the lines in the file. My code : with open("Result.txt") as f: for i, line in enumerate(f): with open(f"{i+1}.txt", "w") as g: g.write(li...
Shameendra General Coding Help 3 2,792 Feb-20-2019, 08:55 AM
    Thread: write each line of a text file into separate text files and save with different names
Post: write each line of a text file into separate text ...

Hi guys, I have a text file which contains the following value: Output:('Yellow_Hat_Person', [293, 997, [...]], [328, 1031, [...]]) ('Yellow_Hat_Person', [292, 998, [...]], [326, 1032, [...]]) ('Yel...
Shameendra General Coding Help 3 2,792 Feb-20-2019, 08:35 AM
    Thread: Index in Python list contains multiple elements.How to access each val and pass them
Post: Index in Python list contains multiple elements.Ho...

I have written a code in Python 3 that extracts values from a table(.csv) using pandas and appends them to a list. My code is: import os import numpy as np import csv import pandas as pd from generate...
Shameendra Data Science 1 2,420 Nov-30-2018, 04:42 PM
    Thread: python script cant find folder where files are kept
Post: RE: python script cant find folder where files are...

I actually figured the problem out on my own after looking carefully. And yes that is the issue. The os.scandir should contain image_folder. Thanks anyways
Shameendra General Coding Help 2 2,776 Nov-23-2018, 04:46 PM
    Thread: python script cant find folder where files are kept
Post: python script cant find folder where files are kep...

I am trying to access a folder "frames" which contains image files which i want to open with python. My code is: import os import matplotlib.pyplot as plt import cv2 from matplo...
Shameendra General Coding Help 2 2,776 Nov-23-2018, 03:01 PM
    Thread: Measure accuracy of Object Detection
Post: RE: Measure accuracy of Object Detection

Yes i meant data. Thanks. I will go through the code and try to find some solution
Shameendra General Coding Help 2 2,701 Nov-19-2018, 01:04 PM
    Thread: Measure accuracy of Object Detection
Post: Measure accuracy of Object Detection

Hey Guys, I am using YOLO model to detect objects in videos, but due to insufficient input date, my training result is not accurate. Sometimes the bounding box does not enclose object but rather lags ...
Shameendra General Coding Help 2 2,701 Nov-19-2018, 10:37 AM
    Thread: read select data from one file and write to another
Post: read select data from one file and write to anothe...

Hey everyone, can anyone please share with me how i can read data from a file and write selective data from this file to another file? example : I have 10 files from a.txt, b.txt....j.txt and each fil...
Shameendra General Coding Help 1 2,499 Oct-16-2018, 05:34 PM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020