• pnutzh4x0r@lemmy.ndlug.org
    link
    fedilink
    English
    arrow-up
    11
    ·
    22 hours ago

    The reason why string[5] = '5' doesn’t work is that strings in Python are immutable (cannot be changed). By doing list(string) you are actually creating a new list with the contents of the string and then modifying the list.

    I wonder if ChatGPT explains this or just tells you to do this… as this works but can be quite inefficient.

    To me this highlights the danger with using AI… sure you can complete a task, but you may not understand why or learn important concepts.

    • jacksilver@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      18 hours ago

      Yeah, it’s a gift and a curse for exploring a new domain. It can help you move faster, but you’ll definitely loose some understanding you’d get from struggling on those topics longer.