codewithjohn.dev

All Posts

  • Published on
    Here is a blog post that explore the benefits of using enums in TypeScript with practical examples and gain valuable insights into leveraging TypeScript enums effectively.
  • Published on
    This blog post shows how to concatenate strings in Python using different methods and techniques. Explore the + operator, the join() method, f-strings, and more. Improve your Python programming skills and efficiently combine multiple strings into a single string.
  • Published on
    In python tuples are a collection of objects which are ordered and immutable. Tuples are sequences, just like lists. Tuples are much similar to lists. The only differences between tuples and lists are, the tuples cannot be changed unlike lists and tuples use parentheses, whereas lists use square brackets...