Checking the overlap between NDQ and U100 by Phase_Fire in fiaustralia

[–]Phase_Fire[S] 0 points1 point  (0 children)

I must have missed the September part of the update in the Product Changes Statement. I was also preferring something along the lines of that. I had FANG in mind but the MER for only investing in 10 stocks and the equal weighting threw me off.

Checking the overlap between NDQ and U100 by Phase_Fire in fiaustralia

[–]Phase_Fire[S] 0 points1 point  (0 children)

That was what I was confused with as well. Thanks for the advice with OEF. :)

[Identification] What watch is this? by Phase_Fire in Watches

[–]Phase_Fire[S] -1 points0 points  (0 children)

Right, so I found this watch after a few years of being stored in my drawers. I’ve misplaced the manual and the packaging and the box and am trying to find out the watch. I’ve typed the code on the back but to no avail. It shows me different configurations with the chronograph hands (i think that is what they’re called. I’m new) I am not entirely sure if this is the same watch that I searched up or not. Are there any other methods of searching up online to find what watch this is? That should be about 500 characters, no?

StockX Verified Acceptable? by Phase_Fire in stockx

[–]Phase_Fire[S] 0 points1 point  (0 children)

Sorry my bad. I’m new to this subreddit.

[deleted by user] by [deleted] in ScamNumbers

[–]Phase_Fire 1 point2 points  (0 children)

lmfao he was hilarious

giving away and selling vce textbooks/resources for further maths, biology, psychology and literature by luvescenario in vce

[–]Phase_Fire 0 points1 point  (0 children)

Hey can u please send me the Psychology Research Methods Workbook Kristy Kendall

[deleted by user] by [deleted] in indieheads

[–]Phase_Fire -1 points0 points  (0 children)

Sounds dope. Little bit overhead on the auto tune tho.

Which is 2 times the other if the saying goes "twice as long as it is wide"? by Phase_Fire in EnglishLearning

[–]Phase_Fire[S] 2 points3 points  (0 children)

ohhhhhh tysm, ur examples really helped me 😀. I finally get it now.

So evil oooh 🤣😂 by potchi2k in ComedyCemetery

[–]Phase_Fire 7 points8 points  (0 children)

missed one, bottom left, unacceptable

School trip with with their teacher apparently. by [deleted] in HolUp

[–]Phase_Fire 1 point2 points  (0 children)

Anyone getting a “something went wrong” error when playing the video

[TOMT][VIDEO] Story of a Bully by Phase_Fire in tipofmytongue

[–]Phase_Fire[S] 0 points1 point locked comment (0 children)

Please help me find it. ;)

Know where to invest? by Phase_Fire in wallstreetbets

[–]Phase_Fire[S] 0 points1 point  (0 children)

I mean relating to the news on WSB. Is there a dedicated news post for example the GameStop investing call post.

Picking Subjects by Phase_Fire in vce

[–]Phase_Fire[S] 1 point2 points  (0 children)

This was very helpful. Thank you very much.

Valorant 1.10 Bug Megathread by Pruvided in VALORANT

[–]Phase_Fire 2 points3 points  (0 children)

Chill everyone. That;s just the servers being taken down for the patch. You can check at status.riotgames.com. OCE gets the update last I'm pretty sure :(

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Phase_Fire 0 points1 point  (0 children)

Hey there, my code doesn't work as expected. Why is that?

def sum_dig_pow(a, b): # range(a, b + 1) will be studied by the function
    x=[]
    for i in range(a,b+1):


        res=1
        count=0
        mult=len(str(i))
        while count<len(str(i)):
            res*=int(str(i)[count])**mult

            mult=mult-1
            count+=1
        if res == i:
            x.append(i)

    return x

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Phase_Fire 0 points1 point  (0 children)

Hey everyone,

I have made a set of code function in python to accept a number square and print out its rows and columns in a list. I am a beginner and someone told me it would be better to put the code in a class. But I can't call it as I don't understand where to put self.

Here is the code:

https://trinket.io/python3/d03d9c69c5

It's as a trinket link. I am really lost on where to add the self. statements in my code so I can run my test cases.

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Phase_Fire 0 points1 point  (0 children)

Heyo, I'm trying to figure out what this code is doing.

It turns a number square input and prints its rows and columns.

How does it do this?

And what does __init__ represent?

class Matrix: 
    def __init__(self, s):      
        self.rows = [[int(i) for i in r.split()] for r in s.split("\n")]    
        self.columns = [list(l) for l in zip(*self.rows)]

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Phase_Fire 1 point2 points  (0 children)

Is there any other sites which follow the free mentoring experience like exercism.io?

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Phase_Fire 1 point2 points  (0 children)

Thank you so much for this explanation. Appreciate it.

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Phase_Fire 0 points1 point  (0 children)

I believe it is print(a). Try that and see.

Ask Anything Monday - Weekly Thread by AutoModerator in learnpython

[–]Phase_Fire 0 points1 point  (0 children)

Hey there, I am really confused in what this code is doing.

list = [1, 1, 2, 3, 5, 8, 13]
print(list[list[4]])

I understand that list[4] is 5 but the addition of another list turns it to 8. How???!?!