python | Unsorted

Telegram-канал python - Python

135202

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

Subscribe to a channel

Python

'list' object attribute 'remove' is read-only

Читать полностью…

Python

del i in list_alpha

Читать полностью…

Python

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

Читать полностью…

Python

To get an answer to your question, it is worth to formulate it more clearly, perhaps add more details, perhaps add explanations.

Читать полностью…

Python

This is not a Python specific question, please delete your offtopic message, move to @PythonOfftopic and ask there.

Читать полностью…

Python

Trying to install python six still getting an error

Читать полностью…

Python

Who have any channel of python?

Читать полностью…

Python

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?

Читать полностью…

Python

is not about the users but the ammount of data

Читать полностью…

Python

Good morning
Can I rely on SQLite to create and build databases and rely on it primarily?

Читать полностью…

Python

And what was the issue?

Читать полностью…

Python

What have you tried? where are you stuck.

Here no one will do it for you, and if you insist you'll get warned.

Читать полностью…

Python

@PythonRes

Читать полностью…

Python

Excuse me, why is it that my Python play in VScode doesn't produce any output?

Читать полностью…

Python

run it and you'll see where/what is the problem

Читать полностью…

Python

What wrong is there in this syntax? i= some letter from the alphabet

Читать полностью…

Python

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

Читать полностью…

Python

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

Читать полностью…

Python

hello guys, can i help how django with bank account for bill payments

Читать полностью…

Python

🚫 ‎Charly banned ‎Ariana [7548928832].
Reason: ‎[Python] scam

Читать полностью…

Python

Check out @PythonRes, a channel for Python resources - video courses, pdf books, tutorials and other info to help you learn Python.

Читать полностью…

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.

Читать полностью…

Python

and you can start with SQlite, you can use it for a long time before requiring an external database

Читать полностью…

Python

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.

Читать полностью…

Python

I got time limiy exceeded. Maybe it can be solve using some technique I dont know

Читать полностью…

Python

I tried using .pop in lists

Читать полностью…

Python

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

Читать полностью…

Python

This is not a Python specific question, please delete your offtopic message, move to @PythonOfftopic and ask there.

Читать полностью…

Python

Probably but this component is already on textual: https://textual.textualize.io/widgets/footer/

Читать полностью…

Python

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)

Where is the problem plz

Читать полностью…
Subscribe to a channel