回答編集履歴

1

修正

2022/08/18 06:42

投稿

meg_
meg_

スコア10587

test CHANGED
@@ -10,6 +10,6 @@
10
10
  >
11
11
  >You can refer to variables in the environment by prefixing them with an ‘@’ character like @a + b.
12
12
  >
13
- >You can refer to column names that are not valid Python variable names by surrounding them in >backticks. Thus, column names containing spaces or punctuations (besides underscores) or starting with >digits must be surrounded by backticks. (For example, a column named “Area (cm^2)” would be >referenced as `Area (cm^2)`). Column names which are Python keywords (like “list”, “for”, “import”, etc) >cannot be used.
13
+ >You can refer to column names that are not valid Python variable names by surrounding them in >backticks. Thus, column names containing spaces or punctuations (besides underscores) or starting with >digits must be surrounded by backticks. (For example, a column named “Area (cm^2)” would be >referenced as \`Area (cm^2)`). Column names which are Python keywords (like “list”, “for”, “import”, etc) >cannot be used.
14
14
  >
15
- >For example, if one of your columns is called a a and you want to sum it with b, your query should be `a >a` + b.
15
+ >For example, if one of your columns is called a a and you want to sum it with b, your query should be \`a >a` + b.