About 5,790,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 …

  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 …

  5. 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, 7 months ago Viewed 13k times

  6. Finding the multiples of 3 in a given range - Stack Overflow

    Mar 28, 2022 · I wrote a code that can find the multiples of 3 of a given number, but I want to make it so that it will only print out the multiples of 3 in a given range. How can I do that?

  7. How to extract multiples of a number from a vector

    How to extract multiples of a number from a vector Asked 10 years ago Modified 4 years, 7 months ago Viewed 17k times

  8. How to make a script that prints the multiples of a number using a …

    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:

  9. How to properly count multiples of a factor within a range with a …

    Nov 3, 2022 · How to properly count multiples of a factor within a range with a for loop? (C# Beginner) Asked 3 years ago Modified 2 years, 5 months ago Viewed 1k times

  10. python - How can I catch multiple exceptions in one line? (in the ...

    try: # do something that may fail except IDontLikeYouException: # say please except YouAreBeingMeanException: # say please Is there a way that I can do something like this …