omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. Nitrous9123

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 3
    • Best 0
    • Controversial 0
    • Groups 0

    Nitrous9123

    @Nitrous9123

    0
    Reputation
    409
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Nitrous9123 Unfollow Follow

    Latest posts made by Nitrous9123

    • RE: Is pandas supported on pythonista ?

      Check out Rubicon-ObjC; PyObjC wouldn’t install

      posted in Pythonista
      Nitrous9123
      Nitrous9123
    • RE: Is pandas supported on pythonista ?

      I run into the problem of trying to mimic the location module Pythonista has in Pyto. Any thoughts?

      posted in Pythonista
      Nitrous9123
      Nitrous9123
    • RE: simple AI

      @JonB said:

      a=[1,2,3]
      b=a
      b.append(4)
      a
      [1, 2, 3, 4]

      I had a similar problem so I change the a to a tuple and the copied it to b. I needed to pop() from b but keep a unchanged so I can reset it to b at start over in my script

      a=(1,2,3)
      b=list(a)
      b.append(4)
      a
      [1, 2, 3]

      posted in Pythonista
      Nitrous9123
      Nitrous9123