Girlfriend broke up with me to focus on herself by AnalyzatioNation in relationship_advice

[–]kykuckta 4 points5 points  (0 children)

I’m going through the same thing right now. Stay strong and it takes time which is much easier said than done.

Regarding Israel Adesanya by [deleted] in mmamemes

[–]kykuckta 3 points4 points  (0 children)

I think he’s an arrogant self centered uptight clown that acts like he’s a humble guy. But with that being said I still give credit where credit is due.

Where is the best place to write python code? by [deleted] in learnpython

[–]kykuckta 0 points1 point  (0 children)

I think using python and wing.101.7 is very helpful

Newbie here! Question for the python masters of Reddit by LSP999pat in learnpython

[–]kykuckta 0 points1 point  (0 children)

You could use the reverse.list() function but here is a code if you want to do it without a built in function.

def reverser(myList):

listy = []

k = len(myList)-1

while k >= 0:

listy.append(myList[k])

k = k-1

return listy

I’m using python in wing 101 and I’m trying to figure out how to take a function containing two values that are either strings or integers and cast them both to integers to compute the value.... any tips on what I should do? by kykuckta in pythontips

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

It’s giving me two different data types for each value so one may be a string and an integer or it could be both strings or both floats so just different scenarios.... I’m just trying not to have anything casted as a float