How to print out information is one of the first things you learn as a beginner programmer. This article goes over what you need to know about printing in Python, and we’ll look at plenty of code examples along the way. Let’s get started! What is print used for? Printing
Monthly Archives: December 2021
JavaScript is a popular programming language used for building web applications, among many other things. In this article, I will provide a list of free online resources where you can start learning JavaScript. After you have learned the basics then you can start building beginner friendly projects. JavaScript Algorithms and
Do you remember J.A.R.V.I.S., Tony Stark’s virtual personal assistant? If you’ve seen any of the Ironman or Avengers movies, I’m sure you do. Have you ever wondered whether you could create your own personal assistant? Yes? Tony Stark can help us with that! Oops, did
In Python, a dictionary is a collection you use to store data in {key:value} pairs. It is ordered and mutable, and it cannot store duplicate data. We write a dictionary using curly brackets like this: my_dict = { “id”: 1, “name”: “Ashutosh”, “books”: [“Python”, “DSA”] } Sometimes, we need to merge
Dark mode is starting to become a requirement rather that a nice-to-have feature like it was back in the day. It gives users the option to choose a theme that’s comfortable for them, whether they’re working during the day or at night. If you haven’t already heard, Tailwind CSS is
“It’s the beginning of machines taking over the world.” The IoT (Internet of Things) is an exciting set of new technologies designed to connect various devices and networks in a wide range of applications. The IoT landscape is changing rapidly. More devices are being connected to the internet every day. IoT devices can range from […]
The concept may still sound futuristic to some, but wireless power is already changing the world today, with endless applications powering consumer and industrial devices and the wireless power industry poised to grow exponentially. It’s going to have a significant impact on virtually every sector as wireless power finally allows the IoT to live up […]
As programmers, we will inevitably make mistakes. Even the most accomplished specialists make them. But you’ll become a better programmer faster if you don’t make the same mistakes over and over. There are many types of mistakes you might make when you’re coding. The majority of them usually come from
What is a SIM swap?SIM swapping is when a hacker convinces your cell phone carrier to switch your phone number to a different SIM – one that they own. This is a relatively normal thing for a retail employee to do, which means that someone asking for a swap
Mixins are my favorite thing about Sass. They made my life so much easier, so I wanted to show you how they can do the same for you. Mixins can be a bit tricky to understand at first, but don’t worry. You’ll get the hang of it by practicing and
