Write Program to rearrange admit card Roll No wise [closed] - python

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 days ago.
Improve this question
I have a long pdf of Grade 6th student's admit card.All admit card merged in single file. These admit card have details like roll no, name, father name, mother name, adress etc corresponding to each student in pdf file without any serial but i want to arrange these admit card in Roll Number wise. Can you help me to solve this problem by using python program.
I want to create a java Android app or python program.

Related

How to develop a system to get insight from database only through natural language? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 days ago.
Improve this question
Suppose you are voice-based asking a system - what is the current sales growth ? The system replies : It is 12 %.
There should not be any pre defined formula to calculate.
It should be coded in such a way that voice to be converted into code then code can be executed automatically to fetch data from database and perform required operation to give an output.
I have tried to code in Python to take voice input and NLP converts the voice into text which triggers pre define set of words and codes associated with it to provide an answer.
But I do not want to code all the related formulas. User can ask growth, mean, median, or anything so that system gives an output by auto performing operations on data.

How to create a database for a health care client [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 days ago.
Improve this question
Creating a database app
So a small health clinic wants me to create a healthcare database that will have easy to read interface that is used to store and looking patient information (name, DOB, gender, home address, contact info, date of membership/visit, diagnoses, and visit histories)
Firstly
what would be the easiest way to approach this customer’s request
Secondly
how much should I charge for this request? It’s going to be two of us on this project.
I’m still talking to the customer, and they do not know EXACTLY what they want besides those following requirements nor do they have a set budget as they want me to set the pricing for building the database.

write the python program for this? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 months ago.
Improve this question
Write a Python program that takes the user's name as input and displays and welcomes them.
Expected behaviour:
Enter your name: Nimal
Welcome Nimal
The Python code for taking the input and displaying the output is already provided.
answer for this code!
name = input("Enter your name: ")
print("Welcome", name)

How to show history of customer's orders in restaurnant ordering system [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 months ago.
Improve this question
I am working on a project of making restaurant ordering system using basic concepts of python. I need to put a logic to store every ordered item of customer and show his order history.
I am beginner at programming so, i not able to think of a logic yet. Please help
How about a Person class that has a variable of type list named orders.
Now you can append the orders list with an item if a person orders something.

python: compare list containing multiple lists with a single different list [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am solving an issue where I have to make a program to correct evidence. The program receives a feedback and answers "n" students and compares it with the supplied template. The responses of all students are put into a single list. My problem is, how to compare the list of responses to the feedback and print an individual score for each student.
Ex:
answer_teacher = ['a','b','d','e','f']
answer_student = [['a','b','f','e','f'],['a','a','d','e','f'], ...]
without seeing what you tried im going to give you this answer ... just be prepared to explain your solution to the teacher
print([sum(a==b for a,b in zip(student,answer_teacher))*1.0/len(answer_teacher) for student in answer_student])

Categories

Resources