© 2022 Hashnode
As I promised, here I am! I have come again with an in-depth blog post for Python lists and dictionaries. In this blog, we will take a look at the in-built methods for lists and dictionaries provided …
Python programming language is extremely popular not only because it is easy to use but because it has lots of third-party libraries which really help in shortening development time. But how do you ma…
What is a REST API? A REST API is a popular way for systems to expose useful functions and data. REST, which stands for representational state transfer, can be made up of one or more resources that ca…
Python dictionary keys must always be immutable, which means you can not update the dictionary key in runtime. But the Questions is Why Python dictionary keys should always be immutable ? Let’s see: L…
Dear Techie, I promise you this my first post is going to be awkward. A few years ago, in early 2016, I wrote down my new year resolutions. First on the list was to become a python programmer. Guess what? I learned python programming. I …
This post is from Grokking Python, a free newsletter available on Substack from Educative, the world’s best learning platform for software developers. It’s where we’ll share our team’s best Python-rel…
Ah, even a Python minion like me is turning up his first program. This is the first of probably the innumerable Python programs that I am going to churn out, that is if I and my family, especially my …
What is Flask? Flask is a simple, easy-to-use microframework for Python that can help build scalable and secure web applications. It's easy to set up and is being supported by a large community. Thus …
My base stack for deep learning is Tensorflow, but PyTorch has been growing exponentially. Therefore I am going to start exploring PyTorch more and more, so I decided to make some hello-world examples…
Hello Reader! Welcome to Day 2. I hope Day 1 is good and laid a great start for the series. Today we will look at the Building blocks of the Python language such as input, output, Variables, Comments, Keywords, Data Types, etc. Topic 1: Co…
According to me, after documentation, GitHub repositories are one of the best ways to learn to program. There are lots of resources where you can learn programming and it is easy to become lost in the…
Hello Reader! Welcome to Day 2 Part 2. I hope the previous articles are good and laid great interest. In this Part 2, we will discuss variables and their memory references, mutability, Equality, Assignment, Reference counting, and Dynamic a…
Day 24 of #100DaysOfCode This is the continuation of the previous blog. You can read it here: https://ilkecandan.hashnode.dev/calculating-the-accuracy-in-machine-learning So far, we have basically done the following: 1- We import our datas…