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

  3. 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 …

  4. Inserting multiple rows in a single SQL query? - Stack Overflow

    Jan 17, 2009 · In SQL Server 2008 you can insert multiple rows using a single INSERT statement.

  5. 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

  6. 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 …

  7. 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 …

  8. 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 …

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

  10. c# - Multiple cases in switch statement - Stack Overflow

    Is there a way to fall through multiple case statements without stating case value: repeatedly? I know this works: switch (value) { case 1: case 2: case 3: // Do some stuff b...