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 3.x

How to find the index of an item in a list in Python?

Mar 19, 2023 by Beaulin Twinkle
How to find the index of an item in a list in Python?

In Python programming, there are several ways to find the index of an item in a list. Let us go through some of the commonly used methods.

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

How to check if the given string is a number in python?

Mar 10, 2023 by Beaulin Twinkle
Check If The Given String Is A Number In Python

Python provides many built-in functions that simplify the task of performing various operations. One of these operations is to check if a given string is a number or not.

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

Merging two dictionaries in Python

Dec 29, 2022 by Beaulin Twinkle
Merging two dictionaries in Python

Here you will see three simple and commonly used methods in Python programming on merging two dictionaries.

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

merge two lists using unpacking method in Python

Dec 30, 2022Dec 12, 2022 by Beaulin Twinkle
Merge two lists using unpacking method in Python

In this article, let us see how to merge two lists using the iterable unpacking method and the sum() method.

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

Converting bytes to a string in Python

Nov 12, 2022 by Beaulin Twinkle
Converting bytes to a string in Python

Here is a code sample for using the decode option to convert bytes or byte array to a string.

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

How to calculate Mean, Median and Mode in Python?

Aug 3, 2022 by Beaulin Twinkle
calculate Mean, Median and Mode in Python

Here is the sample code for calculating mean, median and mode in Python programming language using its inbuilt statistics module.

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

How to find whether the string contains a substring in Python?

May 29, 2022May 13, 2022 by Beaulin Twinkle
How to find whether the string contains a substring in Python

There are couple of different ways to find whether the string contains a substring in Python program. Let us see them.

Categories Python Tags Python 3.10.x, Python 3.x, Visual Studio Code Leave a comment

How to import a JSON file to a variable in Python?

Apr 21, 2022 by Beaulin Twinkle
Import A JSON File To A Variable In Python

There are several packages available for Python to import JSON files. I prefer using the pandas. Here is an example to import a JSON file to a variable.

Categories Python Tags Python 3.10.x, Python 3.x, Python Tips, Visual Studio Code Leave a comment

How to import a CSV file to a variable in Python?

Apr 8, 2022 by Beaulin Twinkle
import a csv file to a variable in Python

There are several packages available for Python to import CSV files. I prefer using the pandas. Here is an example to import a csv file to a variable.

Categories Python Tags macOS Big Sur, Python 3.10.x, Python 3.x, Python Tips, Visual Studio Code Leave a comment

How to execute SQL Server stored procedure from Python?

Dec 18, 2020 by Beaulin Twinkle
Execute SQL Server Stored Procedure From Python

Now we will see how to execute a Stored Procedure from python. For the most part, executing a stored procedure is similar to a select statement.

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

How to connect SQL Server from Python on macOS?

Apr 8, 2022Oct 11, 2020 by Beaulin Twinkle
Connect SQL Server From Python Program On MacOS

In this article we will see how to connect SQL Server from a Python program on macOS using the Visual Studio Code as the development environment.

Categories Python, SQL Server Tags macOS Catalina, Python 3.8.x, Python 3.x, SQL, SQL Server 2019, Visual Studio Code Leave a comment

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
Older posts
Page1 Page2 … Page4 Next →

Article Categories

  • Android (2)
  • Apple (21)
    • macOS (21)
  • Internet & Web Dev. (144)
    • DNN (4)
    • Java Script (10)
    • Jquery (8)
    • PHP (7)
    • Python (75)
    • Twitter Bootstrap (25)
    • Web Security (11)
    • Zurb Foundation (6)
  • Linux (2)
  • Microsoft (296)
    • .Net (64)
    • IIS (10)
    • Internet Explorer (3)
    • Office (2)
    • SQL Server (209)
    • Windows (23)
  • Networks And Distributed Systems (2)
  • Oracle (7)
    • Java (2)
    • Oracle Database (5)
  • Others (5)
  • Reviews (10)

Recent Articles

  • How to find the index of an item in a list in Python? Mar 19, 2023
  • How to check if the given string is a number in python? Mar 10, 2023
  • IIF vs CHOOSE in SQL Server Mar 2, 2023
  • How to insert multiple records with a single SQL query? Feb 25, 2023
  • How to drop all the tables from a database in SQL Server? Feb 25, 2023
  • How to reset user settings in Visual Studio Code? Feb 8, 2023
  • How to launch Visual Studio Code from macOS terminal? Feb 3, 2023
  • How to use CHOOSE in SQL Server Jan 28, 2023
  • How to make SQL script to sleep? Jan 13, 2023
  • How to make a PHP script to sleep? Dec 30, 2022

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?
  • How to compare contents of two files in Visual Studio Code?
  • Getting The List Of Column Names Of A Table In SQL Server
  • Error: 'SqlConnection' could not be found in the namespace (Solved)
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.