Skip to content
  • Facebook
  • GitHub
  • YouTube
  • Pinterest
My Tec Bits
  • Home
  • Microsoft
    • .Net
      • ASP.NET
      • MVC
      • Visual Studio
    • IIS
    • SQL Server
      • SQL Server 2019
      • SQL Server 2017
      • SQL Server 2016
      • SQL Server 2014
      • SQL Server 2012
      • SQL Server 2008
    • Windows OS
  • Web Development
    • Java Script
    • Jquery
    • Python
    • Bootstrap
    • Zurb Foundation
    • Web Security
  • More
    • macOS
    • Reviews
  • Online Tools
    • Fitness Calculators
    • Encoders & Decoders
    • Cryptography
    • Unit Converters
    • Math. Calculators
    • Date & Time Calculators
    • Finance Calculators

Python

Welcome to our comprehensive collection of articles dedicated to the Python programming language. Whether you’re a beginner taking your first steps into the world of coding or an experienced developer looking to expand your Python expertise, this category is your go-to resource.
Explore a wide range of topics, from fundamental concepts to advanced techniques, all presented in a clear and approachable manner. Our curated articles cover everything Python-related, offering insights, tips, and step-by-step guides to help you navigate the intricacies of this versatile language. Dive in, explore, and enhance your Python programming skills with our diverse selection of articles tailored to learners and enthusiasts of all levels.

SHA-2 hash code generation in Python

Aug 14, 2019 by Beaulin Twinkle
Hash Code Encryption with HASHBYTES in SQL Server

In this article we will go through how to generate hash using SHA-2 hash code (SHA224, SHA256, SHA384, SHA512) algorithms in Python.

Categories Python Tags Python 3.7.x, Python 3.x, Security Leave a comment

SHA1 hash code generation in Python

Aug 14, 2019 by Beaulin Twinkle
Hash Code Encryption with HASHBYTES in SQL Server

Here we will see how to generate hash codes using SHA1 hash code algorithm in Python programming using the hashlib module.

Categories Python Tags Python 3.7.x, Python 3.x, Security Leave a comment

MD5 hash code generation in Python

Aug 14, 2019 by Beaulin Twinkle
Hash Code Encryption with HASHBYTES in SQL Server

Lat’s see more about MD5 hash code generation in Python programming with sample codes using hashlib module.

Categories Python Tags Python 3.7.x, Python 3.x, Security Leave a comment

Hash code (hashing) in Python

Aug 14, 2019Aug 13, 2019 by Beaulin Twinkle
Hash Code Encryption with HASHBYTES in SQL Server

Python has an abundant support for several hash code algorithms. There is a library module for hashing. Lets see it.

Categories Python Tags Python 3.7.x, Python 3.x, Security Leave a comment

How to extract numbers from string in Python?

Aug 9, 2019 by Beaulin Twinkle
extract numbers from string in Python

Here is one of the method to extract numbers from string in Python. This method can extract integers, float and negative numbers and convert them to float.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips Leave a comment

How to split delimited string in Python?

Aug 13, 2019Aug 9, 2019 by Beaulin Twinkle
split delimited string in Python

split delimited string in Python: To split a string based on a delimiter and store the result in a list, we can use the str.split() method.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips Leave a comment

How to find name of month in Python?

Aug 8, 2019 by Beaulin Twinkle
Python: Get month name from number

Finding the name of month in Python programming. let us see how to find the name of the month form a number and from a given date.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips Leave a comment

How to find leap year in Python?

Aug 7, 2019 by Beaulin Twinkle
find leap year in Python

Simple and quick tip to find leap year in Python language. Here I have used a straightforward method from calendar module to find if year is leap.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips Leave a comment

How to find number of weeks in a month in Python?

Aug 7, 2019 by Beaulin Twinkle
finding number of weeks in a month in Python

Finding number of weeks in a given month in Python language. Simple options to find the number of weeks in a month including partial weeks.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips Leave a comment

How to get week number of month in Python?

Aug 6, 2019 by Beaulin Twinkle
get week number of month in Python

Getting week number of month. Here is one of the method to find the monthly week number for a given date in Python programming.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips 3 Comments

How to get last day of month in Python?

Aug 9, 2019Aug 6, 2019 by Beaulin Twinkle
Getting last day of month in Python

Quick tip to get last day of the month in Python programming. Simple way to get month’s last day using the monthrange method.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips 1 Comment

How to find first day of the month in Python?

Aug 9, 2019Aug 2, 2019 by Beaulin Twinkle
find first day of the month in Python

Quick tip to find first day of the month in Python programming. There are several ways to find first day of the month.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips 1 Comment

Getting week number from a given date in Python

Aug 2, 2019 by Beaulin Twinkle
Getting week number from a given date in Python

Simple tip for getting week number of the year from a given date in Python programming.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips Leave a comment

How to get day of week for a specific date in Python?

Aug 2, 2019 by Beaulin Twinkle
getting day of week for a specific date in Python

Simple tip with sample code on getting day of week for a specific date in Python programming in integer format as well as day name.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips Leave a comment

Getting day of year for a given date in Python

Aug 1, 2019 by Beaulin Twinkle
Getting day of year using timetuple

Simple methods for getting day of year for a given date in Python programming.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips Leave a comment

Generating random numbers in Python

Aug 1, 2019 by Beaulin Twinkle
Generating random numbers in Python

How to generate random numbers in Python language? Examples for generating random numbers in different formats.

Categories Python Tags Python 3.7.x, Python 3.x Leave a comment

Finding time interval between two times in Python

Aug 1, 2019Jul 31, 2019 by Beaulin Twinkle
Finding time interval between two times in Python

How to find time interval between two times in Python programming. Example for finding number of hours or minutes or seconds between two times.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips Leave a comment

Finding days between two dates in Python

Jul 30, 2019 by Beaulin Twinkle
Finding days between two dates in Python

Finding the days between two dates in Python. Example for finding the difference between two dates in Python programming.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips Leave a comment

Addition and subtraction of datetime with time in Python

Jul 30, 2019 by Beaulin Twinkle
Adding and subtracting datetime object with time object in Python

Addition and subtraction of datetime with time in Python. Examples for adding and subtracting time either in individual components like hours, minutes, seconds or as a whole time object with datetime object.

Categories Python Tags Python 3.7.x, Python 3.x 2 Comments

Subtracting days from date in Python

Apr 1, 2021Jul 26, 2019 by Beaulin Twinkle

In this article we will see a simple tip on subtracting days form date object using the datetime.timedelta() method in Python programming language.

Categories Python Tags Python 3.7.x, Python 3.x, Python Tips 2 Comments
Older posts
Newer posts
← Previous Page1 Page2 Page3 Page4 Next →

Article Categories

  • Android (2)
  • Apple (22)
    • macOS (22)
  • Internet & Web Dev. (149)
    • DNN (4)
    • Java Script (10)
    • Jquery (8)
    • PHP (7)
    • Python (80)
    • Twitter Bootstrap (25)
    • Web Security (11)
    • Zurb Foundation (6)
  • Linux (3)
  • Microsoft (303)
    • .Net (66)
    • IIS (10)
    • Internet Explorer (3)
    • Office (2)
    • SQL Server (213)
    • Windows (24)
  • Networks And Distributed Systems (2)
  • Oracle (7)
    • Java (2)
    • Oracle Database (5)
  • Others (6)
  • Reviews (10)

Recent Articles

  • How to delete a file or folder in Python? Sep 21, 2023
  • How to create a directory, and any missing parent directories in Python? Sep 20, 2023
  • How to exit from single-user mode in SQL Server database? Sep 14, 2023
  • How to group by datetime column without considering time? Aug 31, 2023
  • What Is Django Used For and Why Do We Use The Django Framework? Aug 29, 2023
  • Returning multiple values from a function in Python Aug 10, 2023
  • How to decode ASCII to text in C#? Aug 3, 2023
  • How to encode a string to ASCII in C#? Jul 19, 2023
  • Advantages and disadvantages of cursors in SQL Server Jul 15, 2023
  • What is hosts file and how to use it to override DNS? Jul 5, 2023

Subscribe MyTecBits.com

Online Tools

  • Fitness Calculators
  • Encoders & Decoders
  • Cryptography
  • Unit Converters
  • Math. Calculators
  • Date & Time Calculators
  • Finance Calculators

Popular Articles

  • SQL Server: Concatenate Multiple Rows Into Single String
  • How To Get Day Of Week In SQL Server?
  • SQL Server: Search and Find Table by Name
  • Error: 'SqlConnection' could not be found in the namespace (Solved)
  • How to compare contents of two files in Visual Studio Code?
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use. Learn more...
  • Home
  • About Us
  • Contact Us
  • Site Map
  • Terms Of Use
  • Privacy Policy
© 2012 - 2023 My Tec Bits. All Rights Reserved.