Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: adding elements to a list that are more than a specific number
Post: RE: adding elements to a list that are more than a...

(Mar-19-2020, 03:35 PM)perfringo Wrote: To iterate over items use for-loop and then use if-comparison to check value.thank you
Olavv General Coding Help 2 2,215 Mar-19-2020, 06:05 PM
    Thread: adding elements to a list that are more than a specific number
Post: adding elements to a list that are more than a spe...

How do I add elements from a list to another list that are more than a specific number? I've tried this: list1=[2, 5, 3] list2=[] if number in list1 > 3: list2.append(number) Why does this no...
Olavv General Coding Help 2 2,215 Mar-19-2020, 01:39 PM
    Thread: How do i multiply elements in a list together
Post: RE: How do i multiply elements in a list together

(Mar-08-2020, 12:17 PM)buran Wrote: Although list comprehension is great tool, it's not what OP wants :-) Sorry, Dead_EyE, I don't mean to snap, but obviously OP is confused enough and you are not h...
Olavv General Coding Help 6 3,032 Mar-09-2020, 10:06 AM
    Thread: How do i multiply elements in a list together
Post: How do i multiply elements in a list together

How can I multiply all elements in a list together with a for loop?
Olavv General Coding Help 6 3,032 Mar-08-2020, 11:13 AM
    Thread: multiplying elements in a list
Post: multiplying elements in a list

How do I multiply elements in a list with each other? ex: If I have to lists [4, 0.8, 23] [0.3, 2, 3] How do I make these lists become a new list which should be [1.2, 1.6, 69]
Olavv General Coding Help 3 3,440 Feb-27-2020, 12:50 PM
    Thread: Adding elements to a list by number
Post: RE: Adding elements to a list by number

(Feb-07-2020, 02:10 PM)ndc85430 Wrote: What have you thought about? You don't necessarily need any libraries to do this, but can do it with the basic operations that you can perform on lists.What ba...
Olavv General Coding Help 4 2,959 Feb-07-2020, 06:12 PM
    Thread: Adding elements to a list by number
Post: Adding elements to a list by number

How do I add elements to a list by number? If I wanted to add elements that are grouped in three's from a list to three other lists, how would I do it? For example if the numbers under was in a list...
Olavv General Coding Help 4 2,959 Feb-07-2020, 10:20 AM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020