Python fractions module provides support for rational number arithmetic. It comes with one method for calculating gcd of two numbers easily.In this tutorial, we will learn how to calculate the gcd of two numbers using fractions module. The user will input both numbers and the program will calculate and print the gcd of the numbers.
ReadIn this tutorial, we will learn how to find the ASCII value of a character in python. The user will enter one character and our program will print the ASCII value.
ReadIn this python programming tutorial, we will learn how to print all combinations of three different numbers. The program will take three numbers as input from the user and print out the possible combination of the three numbers.
ReadIn this post, we will learn how to clear a vector in Java. A vector is like a dynamic array in Java. It doesn't have any fixed length. We can add as many items as we want to a vector.
ReadASCII or American Standard Code for Information Interchange is used to represent a letter, number and other characters in integer form. There are 256 values starting from 0 to 255. In this C tutorial, we will learn how to print the ASCII values of all lowercase characters using a C program.
ReadIn this kotlin programming tutorial, we will learn how to check if a substring exists in another string or not. The program will take the strings as input from the user and print out the result.
ReadIn this java buzz programming tutorial, we will learn how to check if a number is buzz or not.
ReadPython set pop method is used to remove an element from a set and returns it. It removes a random element. For example :.
ReadJava string intern() method is one of the important methods of String class. This method returns an interned string or canonical representation of a string.
ReadHash calculation is one of the most used cryptographic function. Hash is used to checking the checksum of a file, password verification, fingerprint verification, build caches of large data sets etc.
Read