You will be muted until you read the rules. Read them! @Rules_for_Python A group about the Python programming language. Offtopic things go here: @pythonofftopic Resources to learn python: @pythonres Group for Hy: @hylang Selenium: @SeleniumPython
ok, I have system called school management system project. i want parents pay their fees through create a contorol number/ control bill their self and pay those fees direct to the bank account
Читать полностью…To get an answer to your question, it is worth to formulate it more clearly, perhaps add more details, perhaps add explanations.
Читать полностью…This is not a Python specific question, please delete your offtopic message, move to @PythonOfftopic and ask there.
Читать полностью…I don't expect there to be huge amounts of data in the end, they are just messages and nothing more ,so can it fit?
Читать полностью…Good morning
Can I rely on SQLite to create and build databases and rely on it primarily?
What have you tried? where are you stuck.
Here no one will do it for you, and if you insist you'll get warned.
Excuse me, why is it that my Python play in VScode doesn't produce any output?
Читать полностью…What wrong is there in this syntax? i= some letter from the alphabet
Читать полностью…ok, I have system called school management system project. i want parents pay their fees through create a contorol number/ control bill their self and pay those fees direct to the bank account, i use django framework
Читать полностью…ok, I have system called school management system project. i want parents pay their fees throug create a cntorol number/ control bill their self and pay those fees direct to the bank account
Читать полностью…hello guys, can i help how django with bank account for bill payments
Читать полностью…🚫 Charly banned Ariana [7548928832
].
Reason: [Python] scam
Check out @PythonRes, a channel for Python resources - video courses, pdf books, tutorials and other info to help you learn Python.
Читать полностью…Thank you, I just needed to do a back-end, even though I am a cybersecurity specialist, and I had to make a program like this based on my friends’ request. Thank you for your time.
Читать полностью…and you can start with SQlite, you can use it for a long time before requiring an external database
Читать полностью…For example, it is a simple small application that my friends and I will use to send anonymous messages and things like that, and I do not think it will grow or whatever, and let's say I do not expect more than 500 users.
Читать полностью…I got time limiy exceeded. Maybe it can be solve using some technique I dont know
Читать полностью…Given an integer array arr, remove a subarray (can be empty) from arr such that the remaining elements in arr are non-decreasing.
Return the length of the shortest subarray to remove.
How to solve, I need help
This is not a Python specific question, please delete your offtopic message, move to @PythonOfftopic and ask there.
Читать полностью…Probably but this component is already on textual: https://textual.textualize.io/widgets/footer/
Читать полностью…import difflib
users = [
{"id": 1, "name": "Ali"},
{"id": 2, "name": "Sara"},
{"id": 3, "name": "Mohammad"},
{"id": 4, "name": "Saman"},
{"id": 5, "name": "Sahar"}
]
def search_users(query, users, key='name'):
search_list = [user[key] for user in users]
matches = difflib.get_close_matches(query, search_list, n=len(users), cutoff=0.0)
result = [user for user in users if user[key] in matches]
return result
query = input("Please enter the search term: ")
matching_users = search_users(query, users)
print("Matching users:", matching_users)