135201
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
heroes: list["Hero"] = Relationship(back_populates="group")
Читать полностью…
This group is to help you on specific issues you have on YOUR code, so you have to show the code you wrote and explain where and why you are stuck... as simple as that
Читать полностью…
looks like you need an offtopic group, please delete the off-topic message(s) and continue this conversation at @pythonofftopic
Читать полностью…
The most effective way to learn is to have a purpose (something to build)
Читать полностью…
Hi everyone!
I’m new here and just starting to learn Python.
Could you please recommend what I should focus on first and how to learn more effectively?
Thanks in advance!
I would like to learn python in YouTube,can someone please suggest the best playlist to watch and learn .
Читать полностью…
Hey guys, does SQLModel not support "Annotated + Relationship" ?
class Group(SQLModel, table=True):Читать полностью…
"""Group Model"""
id: Annotated[int | None, Field(primary_key=True)] = None
name: Annotated[str, Field(index=True, description="Name of the group")]
# Error
# heroes: Annotated[list["Hero"], Relationship(back_populates="group")] = []
heroes: list["Hero"] = Relationship(back_populates="group")
class Hero(SQLModel, table=True):
"""Hero Model"""
id: Annotated[int | None, Field(primary_key=True)] = None
name: Annotated[str, Field(index=True, description="Name of the hero")]
group_id: Annotated[int | None, Field(foreign_key="group.id")] = None
group: Group | None = Relationship(back_populates="heroes")
Hie guys im from zim i wrote my o level an i passed 11 now i want to start a bootcamp for data science can i pass
Читать полностью…
Focus on the basics. Try to better follow a book or a course because you are not ready to choose some topics and skip others
Читать полностью…
If you want from YouTube better to use the search there. Here we recommend reading rather than watching videos
Читать полностью…
You can try Programming with Mosh and/or Tech with Tim. It’s also helpful to use the official documentation to stay up to date, and a good practice to code along with the videos instead of just watching them.
Читать полностью…
If you want to get into deep learning, PyTorch and TensorFlow are great, but for just the chatbot, starting simple might be best
Читать полностью…
Deep learning can be powerful, but for a basic chatbot, simpler approaches like rule-based or retrieval models often work fine. It really depends on what kind of conversation flow you want. Sometimes, less complexity means faster results.
Читать полностью…