About 7,030,000 results
Open links in new tab
  1. python - Create a list of multiples of a number - Stack Overflow

    List of Multiples Create a Python 3 function that takes two numbers (value, length) as arguments and returns a list of multiples of value until the size of the list reaches length.

  2. How can I comment multiple lines in Visual Studio Code?

    I cannot find a way to comment and uncomment multiple lines of code in Visual Studio Code. Is it possible to comment and uncomment multiple lines in Visual Studio Code using some shortcut? If …

  3. math - finding multiples of a number in Python - Stack Overflow

    Jan 28, 2013 · 0 How to calculate the first n multiples of a given number x, in the compact python's lambda notation

  4. How to set PowerBI small multiples barchart as different colors?

    May 22, 2025 · I'd like to make each brand for wave 2025 different color in powerbi small multiple barchart while wave 2023 bars should remain grey. See below image - on Y axis there are particular …

  5. How to make a script that prints the multiples of a number using a for ...

    Jun 10, 2020 · The multiples of number is when you add that number to it self multiple times. range () generates a sequence of integer numbers. It can take one, two, or three parameters:

  6. Returning multiples of a number in Python - Stack Overflow

    Returning multiples of a number in Python Asked 11 years, 7 months ago Modified 7 years, 8 months ago Viewed 13k times

  7. Find the sum of all the multiples of 3 or 5 below 1000

    If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. I have the following code but the answer does not match. #include<

  8. sorting - SQL multiple column ordering - Stack Overflow

    Jan 12, 2010 · How can I sort multiple columns in SQL and in different directions? For instance, 'column1' would be sorted descendingly and 'column2' ascendingly.

  9. Java, Check if integer is multiple of a number - Stack Overflow

    Aug 2, 2013 · How do I check if a Java integer is a multiple of another number? For example, if int j is a multiple of 4.

  10. Determining multiples of 3 or 5 in python - Stack Overflow

    Jan 22, 2015 · 0 I'm relatively new to python and thus trying to set myself up running some simple algorithms. Here's the first problem from project euler, although there are other solutions available to …