已知x = 'hellow world.'.encode(),那么表达式x.decode('gbk')的值为'hellow world.'。
A: 正确
B: 错误
A: 正确
B: 错误
举一反三
- 已知x = hellow world..encode(),那么表达式x.decode(gbk)的值为hellow world.。
- 已知x = 'Python是一种非常好的编程语言'.encode(),那么表达式x.decode('gbk')的值为'Python是一种非常好的编程语言'。
- 已知字符串 x = 'hello world',那么执行语句 x.replace('hello', 'hi') 之后,x的值为()
- Plato divided the world into two parts: the world of ________________, and the _______ world.
- 已知x=(3),那么表达式x*3的值为__________。已知x=(3,),那么表达式x*3的值为_____________。