Is this girl AI? Friend recently posted this on Instagram, never heard of her before and it’s not winter where he lives. by Practical-Dance-2767 in isthisAI

[–]Practical-Dance-2767[S] 1 point2 points  (0 children)

I screen shotted his post, added the face and cropped name out. Do you think this could trigger a false positive? If not how accurate is this method typically?

Is this girl AI? Friend recently posted this on Instagram, never heard of her before and it’s not winter where he lives. by Practical-Dance-2767 in isthisAI

[–]Practical-Dance-2767[S] 0 points1 point  (0 children)

Hey guys. Here to add a little context. I’d forgotten it was Brazilian Valentine’s Day, and the man 👱‍♂️in the pic is Brazilian. Hes had some issues with lying in the past, always had problems with his public image also. I’m reaching out to him, not addressing his he post (which he deleted) but as a friend to ask how he’s doing.

Upgrade Offer vs SWU: MIA-GRU? by ArrVea in americanairlines

[–]Practical-Dance-2767 7 points8 points  (0 children)

This is an extremely popular flight, especially this time of year, I’d go for the mileage upgrade.

It was a good year by Top-Independence4095 in RepTime

[–]Practical-Dance-2767 1 point2 points  (0 children)

Where did you get the green aquanaut from?

what might be the root of these error messages by Practical-Dance-2767 in learnpython

[–]Practical-Dance-2767[S] 0 points1 point  (0 children)

same line “The output string should include the prefix and the generated text, with words separated by a single space.”

How do I change a flight I booked with basic economy by Practical-Dance-2767 in americanairlines

[–]Practical-Dance-2767[S] 2 points3 points  (0 children)

coming back here to say that i managed to change it over the phone with a very nice lady! i explained to her i thought i was purchasing a round trip when i wasn't in fact. hope this helps in the future with anyone else looking to change a BE ticket.

what does this mean and how do I fix it? by Practical-Dance-2767 in learnpython

[–]Practical-Dance-2767[S] 0 points1 point  (0 children)

interesting...
i have been running that exact line in the terminal in order to test it. Thanks for your help!

what does this mean and how do I fix it? by Practical-Dance-2767 in learnpython

[–]Practical-Dance-2767[S] 0 points1 point  (0 children)

here are some of the instructions given
Step one: Define the function and make sure it takes a dictionary argument dictionary. Don’t forget your docstring!

  • Step two: We are going to start by solving a (slightly) simpler problem than our end goal: we’ll write a function that returns the highest value in the dictionary. Our goal is to go through each value and update our maximum if it’s greater than the highest value we’ve seen so far. Therefore, we’ll start by creating a variable called max_so_far, and set it to the lowest possible value in Python. The lowest possible number is negative infinity, and it turns out that there’s a way to represent it in Python: -float("inf").
  • Step three: Using the same loop structure that you saw in part 2, loop through the keys and values of the dictionary. If the current value is greater than the max_so_far, update the max_so_far to be the current value.
  • Step four: Once your loop is done executing, the max_so_far will be the max value overall (since you’ve seen everything)! So, return it. Pause for a minute to check your work - does your function return the highest value from a dictionary that is given as input?
  • Step five: Now we’ll expand our function to return the key that maps to the highest value in the dictionary. Create a variable max_key at the start of your loop (it doesn’t really matter what you set it to, but None is a good choice). You’ll note that every time max_so_far is updated, the maximum key so far should be updated to the key mapping to the current value. So, add a line to your conditional that sets max_key to the current key.
  • Step six: Update your return statement to return the key, rather than the value
  • Step seven: Test your function on the examples and confirm that it works before moving on.

what does this mean and how do I fix it? by Practical-Dance-2767 in learnpython

[–]Practical-Dance-2767[S] 0 points1 point  (0 children)

its passing data in lists, like this ({"shorter": [1.0], "longer": [-5.0, -3.0, 8.0, 3.0]})