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.

Adding Key Value Pair To A Dictionary In Python

Sep 24, 2020 by Beaulin Twinkle
Adding Key Value Pair To A Dictionary In Python

How to add key value pair to a dictionary in Python? You can add key value pairs to an existing dictionary by couple of methods. Let us see them in detail.

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

List extend() vs append() in Python

Sep 17, 2020Sep 17, 2020 by Beaulin Twinkle
extend() vs append() in Python List

extend() vs append(): Pythons list or array methods extend() and append() appears similar, but they perform different operations on the list. Let’s see the differences between extend() and append() list methods.

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

Check if the list is empty in python

Sep 10, 2020 by Beaulin Twinkle
check if the list is empty in Python

Here is the simple method to check if the list is empty or not in python programming language.

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

Debugging Python Django web application

Apr 10, 2020 by Beaulin Twinkle
Debugging Python Django web application

Debugging is a vital part web development. In this article, you will read about basics of debugging Python Django web application in VS Code editor.

Categories Python Tags Django 2.2.x, Python 3.7.x, Python 3.x, Visual Studio Code Leave a comment

Creating code snippet for Python Django web app in VS Code

Nov 15, 2019 by Beaulin Twinkle
Creating code snippet for Python Django web app in VS Code

It will be a good practice to create a code snippet instead of copy paste the template code in several files. Creating code snippet for Python Django web app in VS Code.

Categories Python Tags Django 2.2.x, macOS Catalina, Python 3.7.x, Python 3.x, Visual Studio Code Leave a comment

Using database in Python Django website

Nov 7, 2019 by Beaulin Twinkle
Using database in Python Django website

Simple step by step illustrations for using database in Python Django website. Here we will be using SQLite database.

Categories Python Tags Django 2.2.x, macOS Catalina, Python 3.7.x, Python 3.x, Visual Studio Code Leave a comment

Adding image to Python Django web app

Oct 22, 2019 by Beaulin Twinkle
Adding image to Python Django web app

Adding images and other media files is same as adding other static files. Sometime you may need to segregate images in a separate folder.

Categories Python Tags Django 2.2.x, Python 3.7.x, Python 3.x, Python Tips, Visual Studio Code 4 Comments

Creating website with Python using VS Code on macOS

Apr 10, 2020Oct 20, 2019 by Beaulin Twinkle
website with Python rendered using base template

Step by step instruction on how to use Python for website development using Django as the web framework, Visual Studio Code as the editor on macOS.

Categories Python Tags Django 2.2.x, macOS Mojave, Python 3.7.x, Python 3.x, Visual Studio Code Leave a comment

How to copy a file in Python?

Oct 3, 2019 by Beaulin Twinkle
copy a file in Python

Here is a simple way to copy a file in Python programming using one of the copy methods in shutil library module.

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

How to get a sub-string from a string in Python

Sep 26, 2019 by Beaulin Twinkle
get a sub-string from a string in Python

There are several ways to get a sub-string from a string in Python programming. Here we will see a simple slicing techniques to get sub string.

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

How to find the current directory of the script file in Python?

Sep 20, 2019 by Beaulin Twinkle
find the current directory of the script file in Python

Here is a simple method to find the current directory of the script file in Python programming using a method from the os module.

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

Manually raising exception in Python

Sep 20, 2019Sep 20, 2019 by Beaulin Twinkle
Manually raising exception in Python

Sometime you may need to manually raise exception in Python programming instead of thrown automatically.

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

Get the last element of a list in Python

Sep 17, 2019 by Beaulin Twinkle
Get the last element of a list in Python

There are couple of simple ways to get the last element of a list in Python programming. Let us see both these methods with samples.

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

How to find number of elements in a list in Python?

Sep 13, 2019 by Beaulin Twinkle
find number of elements in a list in Python

Here is a simple tip to find the number of elements in a list in Python programming. Get the count of elements in a list.

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

Converting string to datetime object in Python

Sep 13, 2019 by Beaulin Twinkle
Converting string to datetime object in Python

Here we will see simple tip to cinvert a string to datetime object in Python programming using the datetime.strptime() method.

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

How to check and parse a string to float in Python?

Sep 11, 2019 by Beaulin Twinkle
check and parse a string to float in Python

To check and parse a string to float, I wrote two simple functions. One of the function checks for float and the other converts the string to a float.

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

How to concatenate multiple lists in Python?

Sep 10, 2019Sep 10, 2019 by Beaulin Twinkle
concatenate multiple lists in Python

There are couple of efficient ways to merge / join / concatenate multiple lists in Python programming. Let’s see how to use them with example.

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

How to write data from list to a file in Python?

Sep 6, 2019 by Beaulin Twinkle
write data from list to a file in Python

Here we will see how to write date from list to a file. We will also see a simple technique to write every list element in separate line in the file.

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

Reading a file into a list in Python

Apr 8, 2022Sep 5, 2019 by Beaulin Twinkle
Reading a file into a list

Here we will see how to open the file, read the contents to a list variable with a line per list item. Reading a file into a list is quiet simple in python.

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

Upgrade python version in visual studio code python workspace

Sep 9, 2020Aug 30, 2019 by Beaulin Twinkle
Upgrade Python Virtual Environment

Simple steps to upgrade python version in visual studio code python workspace environment. Upgrading python virtual environment in VS Code.

Categories Python Tags Python 3.7.x, Python 3.8.x, Python 3.x, Python Tips, Visual Studio Code Leave a comment
Older posts
Newer posts
← Previous Page1 Page2 Page3 … Page5 Next →

Article Categories

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

Recent Articles

  • Installing .NET SDK in Linux Mint and debugging C# code using VS Code Jun 21, 2024
  • Generating random number in C#  Jun 6, 2024
  • How to calculate running total in SQL Server? Apr 27, 2024
  • How to import XML data into SQL Server using SELECT query? Apr 10, 2024
  • How to prevent VS Code from replacing an already opened preview tab with a subsequently opened one? Mar 13, 2024
  • Separating letters and numbers from strings in SQL Server Mar 6, 2024
  • How to call or run another application from python code? Feb 15, 2024
  • How to store images in SQL Server? Jan 17, 2024
  • Error: A table that has FILESTREAM columns must have a nonnull unique column with the ROWGUIDCOL property. Jan 8, 2024
  • Fix for Error: “FILESTREAM feature is disabled” while adding FILESTREAM Jan 4, 2024

Subscribe MyTecBits.com

Online Tools

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

Popular Articles

  • Joining Tables from Databases on Different SQL Servers
  • How to store images in SQL Server?
  • Where is SQL Server Configuration Manager?
  • SQL Server: Search and Find Table by Name
  • Convert UTC DateTime to different time zones 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 - 2025 My Tec Bits. All Rights Reserved.