Soluții
Python Program to Find LCM
The least common multiple (L.C.M.) of two numbers is the smallest positive integer that is perfectly divisible by the two given numbers.
For example, the L.C.M. of 12 and 14 is 84.
[mai mult...]Python Program to Find HCF or GCD
The highest common factor (H.C.F) or greatest common divisor (G.C.D) of two numbers is the largest positive integer that perfectly divides the two given numbers. For example, the H.C.F of 12 and 14 is 2.
[mai mult...]How to Lock Column Width and Row Height in Microsoft Excel
Do you have an Excel sheet where you want the columns and rows at fixed sizes? You can lock the column width and row height for your entire spreadsheet in a few steps to prevent accidental resizing.
Maybe you have data that you want to display in a specific way. For instance, you might expand a cell to accommodate a large font or an image. Because it’s so easy to resize columns and rows by dragging them, you or a collaborator might do it unintentionally. Rather than spending time constantly getting those columns or rows back to the sizes you want, just lock them.
[mai mult...]Python Program to Find Numbers Divisible by Another Number
In the program below, we have used anonymous (lambda) function inside the filter() built-in function to find all the numbers divisible by 13 in the list.