Anyone have any tips on learning Python? Currently going through automatetheboringstuff udemy course.

#asknostr #plebstr #plebchain

Reply to this note

Please Login to reply.

Discussion

Chat with ChatGTP or Llama2 about Python. Ask it to give examples. It's very good...

Line any be language, use it.

Pick something small that would be fun and useful, and write a prototype.

Repeat.

Whatever is useful to you.

How about a nostr client? Read and write a message to a web socket?

Or something that reads a web page and extracts urls?

Implement a a Ceaser cipher encoder, then write a breaker.

Start with simple utilities, and read up about libraries that would help, and start using them.

Your learning will be all over the place, and sorry, and that's ok.

Thanks for the tip!

I currently have some work projects that need doing so at least I know I have something to do as I’m learning.

when learning a new language I like to mix learning by doing (as others suggested) with a more "structured" and in depth approach, such as reading a good technical book about the language. A good balance of the two of course is highly subjective and depends on each objectives, resources and approach to learning. Good luck with your Python learning 💪🏻

Thanks for the tips!

Been managing to put what I’ve learnt so far into use during work by writing some tests. Felt like that has really helped my understanding.

Anything I wasn’t to sure on, been using YouTube/ChatGPT to help figure out.