反转字符串 - 赋值前引用的局部变量

时间:2018-05-26 07:34:55

标签: python

return redirect(route('login'))->with('status', $validator->errors());

2 个答案:

答案 0 :(得分:2)

import numpy as np
import pandas as pd

import matplotlib.pyplot as plt

data = np.random.randint(-50, 1000, 10000)

df = pd.DataFrame({'some_data': data})

df[df['some_data'] >= 0].hist(bins=100)
plt.show()

相当于

a += text[len(text) - i]

当这一行首次运行时,它必须查找我指出的a = a + text[len(text) - i] # ^ # | # +-- what's a here? 的值,但它不能,因为之前从未分配a

a放在函数的最开头,以便它具有起始值。

答案 1 :(得分:0)

尝试执行如下操作:

def reverse(text):

    a = ''
    for i in range(1, len(text) + 1):
       a += text[len(text) - i]
    return a


print(reverse("Hello World!"))

输出:

!dlroW olleH

说明:

a中要更新的for-loop定义为a = ''