How to work with Python date, datetime, and time objects
How to use date, datetime and time objects? Formatting time output strftime() method The datetime object has strftime() method for …
Programming in Ptyhon, Tutorials & Examples
How to use date, datetime and time objects? Formatting time output strftime() method The datetime object has strftime() method for …
If / Else / Elif Statements If Statement If statement runs or skips the code based on whether a condition …
In Python, You can define a string with either double quotes ” or single quotes ‘. Strings in Python are …
About Python Classes, Objects, Attributes & Methods A Class is like an object constructor, a template for creating objects. A …
What is JSON? JSON stands for JavaScript Object Notation. JSON is a text format that is completely language independent, which …
What is XML? XML stands for eXtensible Markup Language. XML is a markup language much like HTML. XML was designed …
What is Web Scraping? When a script pretends to be a browser and retrieves web pages to extract information. Mainly …
What is a TCP Sockets? A socket is one endpoint of a two-way communication link between two programs running on …
Python provides another type that is an ordered collection of objects which can be accessed by their indices, called a …
!! A list is a collection used to store data, which is ordered and changeable. A collection allows us to …
A function is a reusable block of code that is used to perform a single action and is executed only …
The differences between the two versions of Python are minimal. The print statement has become the print() function. Python 2 …
Here I will update the most interesting and useful links which I found related to Python. I encourage you to …
A dictionary is a mutable data type that stores mappings of unique keys to values. months= {“january”: 1, “february”: 2, …
About Python programming language Python was created in the late 1980s by Guido van Rossum and was designed to be …