I’m at work in a slow moment with only my phone and pydroid, I wanted to see if there was anything I could learn and mess around with while I’m here

  • flubba86@lemmy.world
    link
    fedilink
    arrow-up
    4
    ·
    1 day ago

    That’s like saying “what’s the best ingredients to learn cooking with?”, firstly it all depends on what your want to eat, secondly it doesn’t really matter what the ingredients are to learn cooking skills.

  • adr1an@programming.dev
    link
    fedilink
    arrow-up
    5
    ·
    1 day ago

    Standard library of course. And collections module too, among the others that come by default. What you need is assignments to solve. Like project euler or hacker rank.

    • yokonzo@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      5
      arrow-down
      1
      ·
      edit-2
      2 days ago

      That’s assuming I want to build a project, right now I’m messing around with numpy building arrays in different dimensions and multiplying them.

      I know, but this is the weird way I learn things

    • dallen@programming.dev
      link
      fedilink
      arrow-up
      3
      ·
      1 day ago

      I personally also put Pydantic on the S tier.

      Also, I use (geo)pandas on a regular basis and when it comes to geometric operations Shapely is an amazing library.

  • magic_lobster_party@kbin.run
    link
    fedilink
    arrow-up
    7
    ·
    edit-2
    2 days ago

    Flask is a fun framework for making web apis.

    Pika is a client for RabbitMQ, if you want to try message queue stuff.

    Numpy and sklearn for numerical and machine learning stuff.

    Matplotlib for making nice plots of your numerical stuff.

    Pytorch for deep learning.

    Pillow for image processing.

    OpenCV for computer vision.

    Pygame for 2D games (maybe a bit old, but I had lots it fun with it when I started learning programming years ago)

    • yokonzo@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      5
      ·
      edit-2
      2 days ago

      I love math so I was messing around with matplotlib, it’s very cool, I was able to make the Mandelbrot set! Mandelbrot set

  • nxdefiant@startrek.website
    link
    fedilink
    arrow-up
    4
    ·
    2 days ago

    If you want to do web requests/ use API’s, use ‘requests’

    graphs/reporting, I’ve used ‘bokeh’ before, it was nice.

    I’ve never used PyDroid, so I’m not sure how you’d install things, but these are both available via pypi, python’s package repository.

    • yokonzo@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      2 days ago

      Pips pretty easy in pydroid, thanks! I’ll have a look at requests, since I’ve been wanting to mess with apis