omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular
    1. Home
    2. lyubomyr83
    3. Topics

    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 4
    • Posts 18
    • Best 2
    • Controversial 0
    • Groups 0

    Topics created by lyubomyr83

    • lyubomyr83

      this version of pandas is incompatible with numpy 1.13.3
      Pythonista • • lyubomyr83

      3
      0
      Votes
      3
      Posts
      2761
      Views

      Drizzel

      pandas wont work on pythonista. An alternative app would be Pyto

    • lyubomyr83

      Function for recognize quantity of unique combinations
      Pythonista • • lyubomyr83

      37
      1
      Votes
      37
      Posts
      9706
      Views

      cvp

      My last version, still without division due to an unanswered question

      def uniques_col(operators, max): col = 0 if len(operators) > 1: for op in operators: col += uniques_col(op, max) return col if operators == '+': for i in range(1,max): col += max - i # comment next lines if you don't want detail for j in range(1,max-i+1): print(i,operators,j,i+j) elif operators == '-': for i in range(1,max+1): col += i # comment next lines if you don't want detail for j in range(1,i+1): print(i,operators,j,i-j) elif operators == 'x': for i in range(1,max+1): col += int(max/i) # comment next lines if you don't want detail for j in range(1,1+int(max/i)): print(i,operators,j,i*j) return col while True: op = input('operator\n') max = int(input('max\n')) print(uniques_col(op,max))
    • lyubomyr83

      Can't install pyttsx3 module
      Pythonista • • lyubomyr83

      33
      0
      Votes
      33
      Posts
      17360
      Views

      JonB

      @lyubomyr83 check that the mute alarms is not set in the pull down settings. If you have a physical mute switch, make sure it is not set to mute. If you have a physical switch that you toggled to lock rotation, then make sure the swipe settings doesn't show mute.

      Even when volume is turned up, pythonista honors the mute setting for some sounds.

    • lyubomyr83

      Cancel button and github support
      Pythonista • • lyubomyr83

      4
      0
      Votes
      4
      Posts
      1849
      Views

      lyubomyr83

      Thank's a lot!