top of page
Search

Hex() function in Python
hex() function is one of the built-in functions in Python3, which is used to convert an integer number into it’s corresponding...
The Tech Platform
Jan 9, 2022

Program to Print Factorial of a Number in Python
Factorial is a non-negative integer. It is the product of all positive integers less than or equal to that number you ask for factorial....
The Tech Platform
Dec 16, 2021

How to Print All Permutations of a Given String in C, C++, JavaScript, and Python.
A permutation is a specific order in which objects can be arranged. For a string of length n, there are n! (n factorial) possible...
The Tech Platform
Dec 13, 2021

Write a program to Multiply the List in Python
This program allows user to define the size of list, then further ask to enter all the numbers of given size. For example, if user enters...
The Tech Platform
Dec 10, 2021

What is the Difference Between Append() and Extend() menthod of list in Python
Append() The append() method in python adds a single item to the existing list. It doesn't return a new list of items but will modify the...
The Tech Platform
Oct 19, 2021
bottom of page