声明变量时'\'是什么意思?
What does '\' mean when declaring a variable?
当我从互联网上搜索有关 YouTube 数据分析的代码时,我发现了这样的代码:
df_rgb2['total_sign_comment_ratio'] = df_rgb2['total_number_of_sign'] / df_rgb2['comment_count']
total_sign_comment_ratio_max = df_rgb2['total_sign_comment_ratio'].replace([np.inf, -np.inf], 0).max()
df_rgb2['total_sign_comment_ratio'] = \
df_rgb2['total_sign_comment_ratio'].replace([np.inf, -np.inf], total_sign_comment_ratio_max*1.5)
我想知道分析师为什么使用这个表达式:
df_rgb2['total_sign_comment_ratio'] = \
因为无论我是否应用该代码,结果都是一样的。
我试图找到'\'
的含义,但我得到的只是如何在打印结果时使用'\'
。
\
通常用于使一段代码继续到多行。如果你只是按回车键并继续在下面写一行代码,例如声明一个变量,这将被视为错误。
当您需要整理代码或您的工作 window 由于某种原因太小时,您可以使用它。
参见:https://developer.rhino3d.com/guides/rhinopython/python-statements/
当我从互联网上搜索有关 YouTube 数据分析的代码时,我发现了这样的代码:
df_rgb2['total_sign_comment_ratio'] = df_rgb2['total_number_of_sign'] / df_rgb2['comment_count']
total_sign_comment_ratio_max = df_rgb2['total_sign_comment_ratio'].replace([np.inf, -np.inf], 0).max()
df_rgb2['total_sign_comment_ratio'] = \
df_rgb2['total_sign_comment_ratio'].replace([np.inf, -np.inf], total_sign_comment_ratio_max*1.5)
我想知道分析师为什么使用这个表达式:
df_rgb2['total_sign_comment_ratio'] = \
因为无论我是否应用该代码,结果都是一样的。
我试图找到'\'
的含义,但我得到的只是如何在打印结果时使用'\'
。
\
通常用于使一段代码继续到多行。如果你只是按回车键并继续在下面写一行代码,例如声明一个变量,这将被视为错误。
当您需要整理代码或您的工作 window 由于某种原因太小时,您可以使用它。
参见:https://developer.rhino3d.com/guides/rhinopython/python-statements/