Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Technology Blogs  >  SOLVING IT? technology Blog  > 

Solving It? Blog


emekadavid-solvingit.blogspot.com
My blog shows how science solves human problems in scientific and social settings, with an emphasis on common and general issues.
Is There Life On Venus? Or Are We Alone?
2020-09-16 16:12
Recently, it was reported in the media that phosphine has been discovered in the acidic clouds of planet Venus. According to scientists, phosphine is a biosignature for life; that means it c… Read More
Python Abstraction: A Guide
2020-09-15 13:27
The notion of abstraction comes from the ability to distil a complicated system into its component parts or fundamental parts. It involves hiding the complexity and showing only the fundamen… Read More
2020-09-14 16:35
XML, or extensible markup language, is a markup language defining a set of rules for encoding documents such that they can be both human-readable and machine-readable. The World Wide Web Con… Read More
Python Shallow Copy And Deep Copy
2020-09-10 17:17
Sometimes while programming, in order to prevent having side effects when we want to change an object, we need to create a copy of that object and mutate the copy so that we can later use th… Read More
Python Print() Function: How It Works
2020-09-10 13:07
One of the ubiquitous and most often used functions in python is the python print function. We use it for realizing the output of our codes and even for debugging. So, it is pertinent that w… Read More
Simulating A Random Walk In Python
2020-09-09 16:20
Deterministic processes are what every programmer is familiar with when starting out in their journey. In fact, most beginner books on programmer will teach you deterministic processes. Thes… Read More
2020-09-06 13:06
The python pow() function, most times called python power function, is a built-in function for calculating the power of a number when raised to an exponent. It comes in very handy several ti… Read More
Parsing HTML Using Python
2020-09-05 13:54
HTML, also known as Hypertext Markup Language, is used for creating web pages and is a standard markup language. If you have ever seen the code of any website or blog, you most probably was… Read More
Python Range() Function: The Complete Guide
2020-09-04 13:14
Imagine you want to loop over some numbers that is defined by a sequence. What do you do? Start creating the list of numbers by hand? Nope, not in python. Python provides a convenient data t… Read More
A Guide To Python Functions
2020-09-03 13:09
When we write code we often have groups of related statements clustered together. It would be bad practice to continue repeating those statements. Good programmers group them together in a f… Read More
Python Sort And Sorted Functions Explained
2020-09-01 13:45
Sorting in programming is very important. It can improve the efficiency of your code. For example, if you have to search for an item in a collection, the ability to sort the items beforehand… Read More
How To Reverse List In Python: 4 Techniques
2020-08-29 18:02
Very often I get people asking me to write a post on how to reverse a list in python. This is because this question often comes up in interviews. So, to oblige them, I have decided to write… Read More
2020-08-27 17:09
Very often, we want to apply a function to an iterable without using a for loop. We saw an example in the python reduce function but the python reduce function doesn’t really fit want… Read More
5 Python Directory Handling Techniques
2020-08-26 17:28
Directories and files are crucial to a programmer who wants a resource for his programs. That is why it is necessary after discussing python’s file handling methods, one should also un… Read More
A Concise Guide To Python Loops
2020-08-22 17:58
In a post this week, while discussing control flow in python, I wrote about repetitive control structures in python which consist of the python while and for loops. But I received some text… Read More
Using A Python Iterator To Get Data
2020-08-20 16:50
In the last post about python iterables, we discussed what it means to be an iterable – being able to participate in the for loop and implementing the __iter__() method to create itera… Read More
Email Validity Check Using A Python Filter
2020-08-08 14:43
I encountered a problem recently of how to check for email validity. When doing web scraping or handling data sets, you get to play with emails a lot and having a handy function that does th… Read More

Share the post

SOLVING IT?

×

Subscribe to Solving It?

Get updates delivered right to your inbox!

Thank you for your subscription

×