Python is one of the most used programming languages in the world. It is also one of the most liked programming languages for beginners. You can’t learn python completely but you can increase your knowledge of python by diving deep into the language features. One of the biggest features of python is its various packages. In my previous blog, I have shown you 20 python packages that you must know. In this blog, we will see some of the python packages that you probably don't know exist. Let’s Start.
As the package name explains itself, this package contains almost every…
Data Structures helps you to solve complex problems in a simpler way with minimum time spent. In this blog, we will discuss all the basic data structures with the programming explanation of them.
An array is like a container where you can store any number of items of the same type. For example, an array of integers or characters.
Examples
arr1 = [1,2,3,4,5] ✔
arr2 = [1,2.5,3,4,5.5] ✖
arr3 = ['a','b','c','d'] ✔
arr4 = ['a',1,'b',4] ✖
There are mainly five operations we can perform in an array.
I have been using python for the last 1 and a half year, and the things that I most like about python is its one-liners and packages. One thing that I realize that the best way to learn a programming language is to build projects in it.
In this blog, we will see 21 python projects with code. I would recommend you first try to build the solution on your own then look into my solution because you might build a better solution than me. If you are a pro in python, then you can also try these projects just…
Python is one of the most and widely used languages in the world of programming. It has over 10 million-plus downloads. since the time it is developed and openly available for people to work it is becoming more and more famous. It is also mostly used in the field of AI. In this blog, we will see 50 python interview questions and answers.
Ans: Python is an interpreted, high-level, general-purpose programming language. Python’s design philosophy emphasizes code readability with its notable use of significant whitespace. …
The day I wrote my first line of code in Python, I become fascinated with the simplicity, popularity, and its famous one-liners. In the blog, I want to present some python one-liners.
# a = 4 b = 5
a,b = b,a
# print(a,b) >> 5,4
Let’s start with a simpler one by swapping two variables with each other. This method is one of the most simple and intuitive methods that you can write with no need to use a temp variable or apply arithmetic operations.
a,b,c = 4,5.5,'Hello'
#print(a,b,c) >> 4,5.5,hello
You can use commas and variables to assign…
On Medium, programming is the most read content. The Programming tag itself has around 175k followers and combined with all other tags related to programming, it has over 500k followers. Most of the programming articles are tutorial and guide based articles. The soul of these articles are code blocks. If an author is successfully able to showcase the code in a beautiful way, then there is a higher chance that the article will get a huge response.
In this blog, I will show you 9 different ways you can embed code blocks in the medium.
Inline code is often used…
We Are At The End Of 2020. This year is full of disasters and Surprises which you can’t deny. Every day you wake up and got to know there is something mishappening someplace in the world. There are lots of things that happened this year whether it is the bush fire of Australia or Swarms of Locusts in Asia. Due to these vast amounts of disaster, we all have lost some precious things in our life. whether you lost your job or lost someone everyone has lost something. One Thing That Everyone Lost is Time and There is nothing precious…
Well, We All Know That Medium has changed its partner program policies and the way they pay writers. Now They pay writers based on the reading time of medium members. It is a bit confusing to calculate the earnings on your own. I have three articles that have one hour of reading time and all of them earn a different amount of money. The first one has earned two dollars, the second one has earned one dollar and twenty cents and the third story has earned only eighty cents.
Let’s get back to the topic of how much a story…
Pythoneers is the newest publication on medium. It is a publication based on Python Programming and Things That You Can Do With Python. We Accept a Variety of Topics.
Topics We Are Interested In
Machine Learning
Artificial Intelligence
Data Science
Python Programming
Programming Tips and Tricks
Web Scraping
Web Automation
Desktop Development
GUI Development
Web Design and Development
Testing
Scripting
Ethical Hacking
Computer Vision
Deep learning
When You Write On Medium The Main Thing You Need To Take Care of is your tags because they decide the place where your story is shown. Suppose if you are writing about programming…
If You Want To Call Yourself A Developer Than Start Using These
Windows is the most used operating system in the world. There are over one billion people who use Windows as their main operating system. Although Windows is not that safe in terms of privacy still almost 70–80% of developers use Windows as their first preference. Since the launch of Windows 10, many people have stopped using the terminal because of the number of options and easy interface windows offers, but we are developers if we don’t use it then who will??. This the only thing that separates us…