关于变量的描述,下面选项中描述正确的是
A: 变量在使用前可以不赋值即使用
B: 1_1可以作为一个变量名
C: is可以作为一个变量名
D: 以下代码中,a是一个变量,但执行a
+''34"会出错,错误类型为TypeError:
unsupported operand type(s) for +: 'int' and 'str'
>>>
a = 12
>>>
a + "34"
a = 12
>>>
a + "34"
A: 变量在使用前可以不赋值即使用
B: 1_1可以作为一个变量名
C: is可以作为一个变量名
D: 以下代码中,a是一个变量,但执行a
+''34"会出错,错误类型为TypeError:
unsupported operand type(s) for +: 'int' and 'str'
>>>
a = 12
>>>
a + "34"
a = 12
>>>
a + "34"
举一反三
- 关于变量的描述,下面选项中描述正确的是 A: 变量在使用前可以不赋值即使用 B: 1_1可以作为一个变量名 C: is可以作为一个变量名 D: 以下代码中,a是一个变量,但执行a<br/>+''34"会出错,错误类型为TypeError:<br/>unsupported operand type(s) for +: 'int' and 'str'<br/>>>><br/>a = 12<br/>>>><br/>a + "34"
- 关于变量的描述,下面选项正确的是 A: 变量在使用前可以不赋值即使用 B: 1_1可以作为一个变量名 C: is 可以作为一个变量名 D: >>><br/>a = 12<br/>>>> a + "34"<br/>a 是一个变量,但执行a<br/>+''34" 会出错,错误类型为TypeError:<br/>unsupported operand type(s) for +: 'int' and 'str'
- 关于变量的描述,下面选项中描述正确的是()。 A: is可以作为一个变量名 B: 变量在使用前可以不赋值即使用 C: 1_1可以作为一个变量名 D: 以下代码中,a是一个变量,但执行a+''34"会出错,错误类型为TypeError:unsupportedoperandtype(s)for+:'int'and'str'>>>a=12>>>a+"34"
- 关于Python字符串操作的描述,错误的是 A: >>> "hellohellohello"/3<br/>输出结果是"hello" B: >>> "hello"*2<br/>输出结构是'hellohello' C: >>> 'hello' + 1<br/>输出结果是<br/>Traceback<br/>(most recent call last):<br/>File<br/>"", line 1, in <br/>"hello"<br/>+ 1<br/>TypeError:<br/>must be str, not int D: >>> "hello" - "world"<br/>输出结果是<br/>Traceback<br/>(most recent call last):<br/>File<br/>"", line 1, in <br/>"hello"<br/>- "world"<br/>TypeError:<br/>unsupported operand type(s) for -: 'str' and 'str'
- 关于Python字符串操作的描述,错误的是() A: >>><br/>"hellohellohello"/3<br/>输出结果是"hello" B: >>><br/>"hello"*2<br/>输出结构是'hellohello' C: >>><br/>'hello' + 1<br/>输出结果是<br/>Traceback (most<br/>recent call last):<br/>File<br/>"", line 1, in <br/>"hello"<br/>+ 1<br/>TypeError: must be<br/>str, not int D: >>><br/>"hello" - "world"<br/>输出结果是<br/>Traceback (most<br/>recent call last):<br/>File<br/>"", line 1, in <br/>"hello"<br/>- "world"<br/>TypeError:<br/>unsupported operand type(s) for -: 'str' and 'str'