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

Python

Collection of articles about Python programming.

Generating random numbers in Python

Aug 1, 2019Aug 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, 2019Jul 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, 2019Jul 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 Leave a comment

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

Adding days to date in Python

Jul 26, 2019Jul 26, 2019 by Beaulin Twinkle
Adding days to date object in Python

Quick Python tip for adding days to date object using the datetime.timedelta() method.

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

Convert date string of MM/DD/YYYY or DD/MM/YYYY to date object in Python

Sep 13, 2019Jul 25, 2019 by Beaulin Twinkle
Convert date string of mm/dd/yyyy or dd/mm/yyyy to date object in Python

Here we will see how to do the reverse of it. i.e. converting date string of mm/dd/yyyy or dd/mm/yyyy to date object.

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

Convert date to MM/DD/YYYY format in Python

Jul 25, 2019Jul 25, 2019 by Beaulin Twinkle
Convert date to MM/DD/YYYY format in Python

Simple way to convert a date object to MM/DD/YYYY format date string in Python programming

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

Converting seconds to days, hours, minutes and seconds in Python

Jul 25, 2019Jul 25, 2019 by Beaulin Twinkle
Converting seconds to days, hours, minutes and seconds i Python

Easiest way to convert seconds to days, hours, minutes and seconds in Python programming.

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

Generate time from hours, minutes and seconds in Python

Jul 25, 2019Jul 25, 2019 by Beaulin Twinkle
Generate time from hours, minutes and seconds in Python

Way to generate time from hours, minutes and seconds in Python programming language. Generating atime value from individual components of time.

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

Generate date from day, month and year in Python

Jul 24, 2019Jul 24, 2019 by Beaulin Twinkle
Generate date from day, month and year in Python

Quick method to generate a date from day, month and year in Python language.

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

Getting current time alone in python

Jul 24, 2019Jul 24, 2019 by Beaulin Twinkle
current time alone in python

Here we have few methods for getting the current time alone in python programming.

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

Getting current date alone in python

Jul 21, 2019Jul 19, 2019 by Beaulin Twinkle
Getting current date alone in python

Simple tips to get the current date alone from the system date and time in Python language.

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

Getting the current date and time in Python

Jul 19, 2019Jul 19, 2019 by Beaulin Twinkle
getting current date and time in Python

Here is the way to get the current date and time in Python programming language.

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

Django: You have .. unapplied migration(s).

Jul 31, 2019Jul 18, 2019 by Beaulin Twinkle
Running Django migration comment

Solution for Django unapplied migration(s) issue: You have 17 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.

Categories Python Tags Django 2.2.x, Python 3.7.x 1 Comment

How to make Python program to sleep for milliseconds?

Jul 19, 2019Jul 17, 2019 by Beaulin Twinkle
make Python program to sleep for milliseconds

Here is a simple tip to make Python program to sleep for milliseconds using the regular time.sleep() method.

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

How to find only the files in a directory in Python?

Jul 12, 2019Jul 12, 2019 by Beaulin Twinkle
find only the files in a directory in Python

A simple Python technique to find only the files in a directory. Here I have used pathlib and os.listdir to get the list of files.

Categories Python Tags Python 3.x Leave a comment

How to check if file exists before opening it in Python?

Jul 12, 2019Jul 12, 2019 by Beaulin Twinkle
check if file exists before opening it in Python

Here is a simple Python technique to check if file exists before performing any operation on the file.

Categories Python Tags Python 3.x Leave a comment

Python code to find the version it is running on

Jul 10, 2019Jul 10, 2019 by Beaulin Twinkle
Python code to find the version it is running on

Here is a simple Python code to find the version it is running on. You can get the full version number or the various components like manor, minor,… versions separately.

Categories Python Tags Python 3.x Leave a comment

Upgrading PIP on macOS for Python 3.x

Jul 10, 2019Jul 10, 2019 by Beaulin Twinkle
Check latest released pip version

Here are the simple steps for upgrading “Package installer for Python” abbreviated as PIP to it’s latest version compactable to Python 3.x.

Categories macOS, Python Tags macOS Mojave, Python 3.x Leave a comment
Post navigation
Older posts
Newer posts
← Previous 1 2 3 4 Next →

Article Categories

  • Android (2)
  • Apple (16)
    • macOS (16)
  • Internet & Web Dev. (127)
    • DNN (4)
    • Java Script (10)
    • Jquery (8)
    • Python (65)
    • Twitter Bootstrap (25)
    • Web Security (11)
    • Zurb Foundation (6)
  • Linux (2)
  • Microsoft (265)
    • .Net (59)
    • IIS (10)
    • Internet Explorer (3)
    • Office (2)
    • SQL Server (183)
    • Windows (22)
  • Networks And Distributed Systems (2)
  • Oracle (4)
    • Oracle Database (4)
  • Others (4)
  • Reviews (10)

Recent Articles

  • How to loop through table rows without cursor in SQL Server? Mar 26, 2021
  • Script To Backup All The Databases In SQL Server Mar 10, 2021
  • Finding triggers on table or schema in SQL Server DB Feb 26, 2021
  • Escaping square brackets in LIKE clause in SQL Server Feb 17, 2021
  • FOR LOOP in SQL Server? Feb 7, 2021
  • Search the whole database for a string in SQL Server Jan 29, 2021
  • How to avoid the error “string or binary data would be truncated” and insert string with truncation in SQL Server? Jan 18, 2021
  • How to execute SQL Server stored procedure from Python? Dec 18, 2020
  • Error: ‘SqlConnection’ could not be found in the namespace (Solved) Dec 11, 2020
  • How to execute an SQL Server stored procedure from a C# program? Dec 11, 2020

Subscribe MyTecBits.com

Online Tools

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

Popular Articles

  • SQL Server: Concatenate Multiple Rows Into Single String
  • Where is SQL Server Configuration Manager?
  • How To Add Bootstrap In ASP.NET (MVC & Web Forms)
  • How To Get Day Of Week In SQL Server?
  • Find Indexes On A Table In SQL Server
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 - 2021 My Tec Bits. All Rights Reserved.
Scroll back to top