I wanna earn money

I'm thinking of teaching online like 5th to 6th grade children i taught my siblings but i wanna try to earn some money by doing it online suggest me some ideas and platforms where i can got this kind of work with decent pay

reddit.com
u/asteroid_336 — 1 month ago

In which scenario should i use Python's match-case

Currently iam learning python and learned about python match-case brought in python 3.10 , i already knew about if-elif-else block but iam not able get in which scenario i will be using match-case

day = 4
match day:
  case 1:
    print("Monday")
  case 2:
    print("Tuesday")
  case 3:
    print("Wednesday")
  case 4:
    print("Thursday")
  case 5:
    print("Friday")
  case 6:
    print("Saturday")
  case 7:
    print("Sunday")

i got this example from the tutorial which i followed

reddit.com
u/asteroid_336 — 2 months ago