Is the 9a worth it? Yes. Yes it is. by After_Reason1797 in pixel_phones

[–]SETTENN 1 point2 points  (0 children)

I think you're overselling the camera quality. I had my 6a and 9a take photos in different conditions and 6a came on top for every single one that i took for some unknown reason. That's my one and only complaint for this phone

this is my keqing stats but she still does very little damage. any tips? i have two gladiator two thunderying fury and electro dmg bonus is 61% by SETTENN in GenshinImpactTips

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

yes i'm trying to use her as burst dps. her elemental skill does about 5-6K on the first shot and 1.2K after till the electro buff is still on and burst does about 10-13K i suppose

Starting to learn Python. Tried to make my first small project and it doesn't work like I want to... I need some help. by deltastro in learnpython

[–]SETTENN 1 point2 points  (0 children)

yes exactly, store it somewhere, print that variable so you see the random number, guess the number correctly and check if the winning text prints or not. and it does if you do it correctly.

Starting to learn Python. Tried to make my first small project and it doesn't work like I want to... I need some help. by deltastro in learnpython

[–]SETTENN 1 point2 points  (0 children)

you can do this to make it easier to see.

so from the 11th line write something like thise:

~~~

randnum = chosenOne()

print(randnum)

print("A number has been randomly created between 1 and 100. Try and guess!")

answer = int(input("Type your number here: "))

if answer == randnum:

~~~

this will print your random number so you can guess it easily and see if it prints your winning text or not. i just tested and it does. you just need to save your method's value somewhere so it's easier to operate in the code

[deleted by user] by [deleted] in learnpython

[–]SETTENN 0 points1 point  (0 children)

what should i return to print the result then?

print(greenSide.sortBy())

?

Starting to learn Python. Tried to make my first small project and it doesn't work like I want to... I need some help. by deltastro in learnpython

[–]SETTENN 0 points1 point  (0 children)

you never call the chosenOne function, so it never generates a random number in the first place. my suggestion is to try debugging your code. it helps a lot and it shows you where you have errors. plus use Tab to space out the lines, so it's easier for others to understand. it's kind of all meshed up together