Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
question by a beginner
#1
Hello,
I apologize for the inconvenience
I am a student in electrical engineering so I do not have a lot of baggage about programming languages
I need your advice on my little project in the internship
I have a csv file with values in each hour of several values of currents, voltage, and frequency
I need to make a small application or an interface that manages the data
and do some function that reduces the data for example:
to do a function of the variables of the currents in the hours between morning 7 and 17 and another function for the other schedules
in addition to a graph for every hour to summarize the report
I have not decided by which program I will work
can Python help me or not

you can advise me please
Reply
#2
Hello and welcome!
Python can certainly manage what you require of the programming language. But be prepared to research some modules (built in or third party) and break the task down to smaller pieces.
If you have further questions or will get stuck with coding, feel free to ask on the forums. Good luck!
Reply
#3
(Jan-15-2019, 09:23 AM)j.crater Wrote: Hello and welcome!
Python can certainly manage what you require of the programming language. But be prepared to research some modules (built in or third party) and break the task down to smaller pieces.
If you have further questions or will get stuck with coding, feel free to ask on the forums. Good luck!
I did not understand
to research some modules (built in or third party)
another question with which compiler I need
Reply
#4
Quote:to research some modules (built in or third party)
I'll explain with examples:
If you want to read CSV data, you can use Python's built in CSV module. Built in means it is included in the Python environment that you download and install on your system.

If you need some particular plot drawing capabilities, you may find a third party module (such as matplotlib), which you need to install in your python environment, before you can use it.

What you need to research is what kind of module you need, and then find out whether something like this is already built in, or you need to install it (third party) - that's roughly speaking.

Quote:another question with which compiler I need
Python is an interpreted language. So when you install Python, it comes with an interpreter, which compiles and executes your Python code. You can find some basic tutorials about installation and many other things in tutorials section of our forum.
Reply
#5
Are you familiar with Excel? Formulas and graphs in Excel, that is. You could do this in Excel without the baggage of learning Python. I think in the long term learning Python would be good, and Python could certainly do all this, but if you just need to get this done for an internship you might think about Excel.
Craig "Ichabod" O'Brien - xenomind.com
I wish you happiness.
Recommended Tutorials: BBCode, functions, classes, text adventures
Reply
#6
(Jan-15-2019, 11:48 PM)ichabod801 Wrote: Are you familiar with Excel? Formulas and graphs in Excel, that is. You could do this in Excel without the baggage of learning Python. I think in the long term learning Python would be good, and Python could certainly do all this, but if you just need to get this done for an internship you might think about Excel.

they asked me to make small application so that they could use it several times
Reply
#7
(Jan-15-2019, 11:25 PM)j.crater Wrote:
Quote:to research some modules (built in or third party)
I'll explain with examples:
If you want to read CSV data, you can use Python's built in CSV module. Built in means it is included in the Python environment that you download and install on your system.

If you need some particular plot drawing capabilities, you may find a third party module (such as matplotlib), which you need to install in your python environment, before you can use it.

What you need to research is what kind of module you need, and then find out whether something like this is already built in, or you need to install it (third party) - that's roughly speaking.

Quote:another question with which compiler I need
Python is an interpreted language. So when you install Python, it comes with an interpreter, which compiles and executes your Python code. You can find some basic tutorials about installation and many other things in tutorials section of our forum.

I understood that the python when you need something you look for his biblioteca
thank you very much I will start
Reply
#8
Bonjour,
j'ai expliqué mon problème mais l'idée n'est pas arrivée
je réexplique simplement
les vidéo dans YouTube ils lisent les donnéés depuis le fichier csv comme :

nom;age;numero;date;salah;22;1;26/01;ali;23;2;26/01;ranard;30;3;26/01

moi j'ai besoin de le afficher comme :

nom age numero date
salah 22 1 26/01
ali 23 2 26/01
ranard 30 3 26/01
Reply
#9
We use only English language in forum @salahoum.
Reply
#10
I explained my problem but the idea did not arrive
I simply re-explain
the videos in YouTube they read the data from the csv file like:

name, age, number, and the date; Salah; 22; 1; 26/01; ali; 23; 2; 26/01; Ranard; 30; 3; 26/01

I need to display it as:

name number date
salah 22 1 1/26
ali 23 2 26/01
ranard 30 3 26/01
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  A simple "If...Else" question from a beginner Serena2022 6 1,638 Jul-11-2022, 05:59 AM
Last Post: Serena2022
Question Beginner Boolean question [Guessing game] TKB 4 2,227 Mar-22-2022, 05:34 PM
Last Post: deanhystad
  Beginner question NameError amazing_python 6 2,380 Aug-13-2021, 07:28 AM
Last Post: amazing_python
  Beginner question - storing values cybertron2 4 3,137 Mar-09-2021, 04:21 AM
Last Post: deanhystad
  beginner question about lists and functions sudonym3 5 2,666 Oct-17-2020, 12:31 AM
Last Post: perfringo
  beginner question ___ 1 1,704 Jul-12-2020, 08:12 AM
Last Post: Gribouillis
  Beginner question: lxml's findall in an xml namespace aecklers 0 2,864 Jan-22-2020, 10:53 AM
Last Post: aecklers
  Super easy beginner question AkulaLA 3 3,174 Nov-07-2019, 03:42 AM
Last Post: Larz60+
  Basic Beginner question NHeav 4 2,708 Sep-13-2019, 11:43 AM
Last Post: NHeav
  Beginner Question - Esaping the Escape Character correctly? Bramen 4 2,653 Aug-27-2019, 02:38 PM
Last Post: Bramen

Forum Jump:

User Panel Messages

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