About 5,860,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. math - finding multiples of a number in Python - Stack Overflow

    Jan 28, 2013 · 0 def multiples(n,m,starting_from=1,increment_by=1): """ # Where n is the number 10 and m is the number 2 from your example. # In case you want to print the multiples starting …

  3. I have 2 GitHub accounts. How can I use both when I am working …

    Jun 28, 2020 · I have 2 different GitHub accounts: A personal account for my own needs, and a company GitHub account that I manage. I use V.S. Code for both company & personal …

  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. C Program that prints Multiples of 3, 5 and both, professional style ...

    Sep 29, 2020 · I wrote my first simple C program that prints multiples of 3 , 5 and both 3 and 5 instead of the number, from 1 to 100. It works. I know this program can be written in million …

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

    You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation and how do I …

  7. python - Multiples of 10 in a list - Stack Overflow

    Mar 31, 2022 · I am currently doing an assignment in my intro level CS class and just need a smidge of help. They are asking me to write a program that reads a list of integers and …

  8. How do I do multiple CASE WHEN conditions using SQL Server …

    What I'm trying to do is use more than one CASE WHEN condition for the same column. Here is my code for the query: SELECT Url='', p.ArtNo, p.[Description], ...

  9. 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?

  10. c# - Return multiple values to a method caller - Stack Overflow

    @Jakob isn't out the closest thing C# has to native multiple return? The tuple probably is the best option for readability. Personally, I'm not keen on having anonymous types or property names …