Если у вас есть функция, которую вы вызываете и возвращаете результат, вы можете сохранить ее в новой переменной для дальнейшего использования:
newVar = function()
Это означает, что позже в вашем коде вы можете использовать его для чего-то другого. Также, когда вы создаете функцию, вы можете определить переменные для использования внутри функции, которые могут быть переданы при ее вызове. Для вашего примера вы, вероятно, хотите передать переменную username вместо ввода в полезную нагрузку.
def myFunc(username):
print(username)
myFunc(random_user)
Поскольку у меня нет доступа к вашему API, я создал модифицированный пример с комментариями ниже, который должен действовать аналогично тому, как вы получаете. Если вы разместите пример JSON с API-сервера, то будет проще иметь рабочий пример.
# Temp DB Dictionary for showing how things work
users = {
"user1": [
{
"pp_country_rank": 100,
"other_data": "random"
}
],
"user2": [
{
"pp_country_rank": 95,
"other_data": "more-random"
}
],
}
# Defining the function. This can be used over and over.
# In this case there will be a variable created in the
# function called "username". If this isn't passed to the
# function when you call it then it will be set to user1.
# If you do set it, whatever you set it to when you call
# the function will overwrite the default.
def getRank(username="user1"):
# payload = {'k': 'myapi', 'u': username}
# r = requests.get('https://osu.ppy.sh/api/get_user', params=payload)
# Since we created the username variable I can past
# it to whatever I am calling.
r = users[username]
#player = r.json()[0]
player = r[0]
# The return here returns the result that gets stored in
# the variable.
return (player["pp_country_rank"])
print("Enter first username")
# We are calling the input before passing the result to the
# function
user1 = input()
# We are creating a new variable that will store the result of
# the function getRank(). We pass the stored input of user1 to
# the functuon. In the function that data will be available as
# the variable "username"
user1_rank = getRank(user1)
# There are different ways of formatting and using variables in
# the print. This is one way and where the %s is it will be
# replaced in order with the variables at the end.
print("%s rank is %s" % (user1, user1_rank))
# We get the second username again storing the input in user2
print('Enter a second Username')
user2 = input()
# We call the same function getRank() but this time we pass the
# data from user2 instead of user1.
user2_rank = getRank(user2)
print("%s rank is %s" % (user2, user2_rank))
# Here we are doing the diff between the two ranks. If you do not
# use abs() then you would have to figure out which rank was bigger
# before doing the substraction to avoid a negative number. This
# way you will also have a positive diff.
rankDiff = abs(user1_rank - user2_rank)
print("The difference in ranks is %s" % rankDiff)