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.

How to call or run another application from python code?

Feb 15, 2024 by Beaulin Twinkle
call or run another application from python code

There are several ways to call or run another application form within python code. In this article let us see few of the commonly used methods.

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

How to iterate through a dictionary in Python?

Dec 12, 2023 by Beaulin Twinkle
Iterate through a dictionary in Python with for loop and keys

In Python, you can iterate through a dictionary using its keys, values, or key-value pairs. Let us see them in detail.

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

Accessing the index while iterating a sequence with a for loop in Python

Nov 21, 2023 by Beaulin Twinkle
Accessing the index while iterating a sequence with a for loop in Python

There may be situations where you may need to access the index while iterating a sequence with a for loop along with the element of the sequence.

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

How to delete a file or folder in Python?

Sep 21, 2023 by Beaulin Twinkle
Delete a file or folder in Python

There are multiple ways to delete a file or folder in Python programming. You can use the os module or the shuttle module.

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

How to create a directory, and any missing parent directories in Python?

Sep 20, 2023 by Beaulin Twinkle
Create a directory, and any missing parent directories

To create a directory in Python, including any missing parent directories, you can use the os module or the Path class from the pathlib module.

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

What Is Django Used For and Why Do We Use The Django Framework?

Sep 5, 2023Aug 29, 2023 by My Tec Bits.

Choosing the framework that is more suited to meet your demands will undoubtedly shorten your timeframe even if they all offer advantages. Django is often the best option for creating digital goods.

Categories Python Tags Django 2.2.x, Python 3.x Leave a comment

Returning multiple values from a function in Python

Aug 10, 2023 by Beaulin Twinkle
Returning multiple values from a function in Python

Efficiently returning multiple values from a single function in Python using various methods. Learn how to return objects, tuples, lists, and dictionaries, enhancing your code’s readability and organization. Master the art of extracting and utilizing multiple values seamlessly.

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

Upgrading all Python packages with pip in single step

Jul 4, 2023 by Beaulin Twinkle
Upgrading all Python packages with pip in single step

Upgrade all Python packages in a single step using pip. Learn how to effortlessly update all installed packages in your Python environment with a simple command.

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

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

How to sort a dictionary by its value in python?

Dec 2, 2022 by Beaulin Twinkle
Sort a dictionary by its value in python

Python does not have any inbuilt method to sort the dictionary by its value. However, there are a few workarounds. Let’s see one of them.

Categories Python Tags Python 3.10.x, Python Tips 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
Older posts
Page1 Page2 … 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

  • Where is SQL Server Configuration Manager?
  • Joining Tables from Databases on Different SQL Servers
  • Formatting SQL statements in SSMS
  • Convert DateTime To YYYY-MM-DD Format In SQL Server
  • Auto Generate INSERT Statements for 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 - 2025 My Tec Bits. All Rights Reserved.