首页 新闻 会员 周边 捐助

What gets printed?() 1 print r"\nwoow"

0
[已关闭问题] 关闭于 2025-11-24 14:41
A
new line then the string: woow
B
the text exactly like this: r"\nwoow"
C
the text like exactly like this: \nwoow
D
the letter r and then newline then the text: woow
E
the letter r then the text like this: nwoow
正确答案:C

 

在Python中,当字符串前加上字母r时,表示这是一个原始字符串(raw string)。原始字符串会将反斜杠()当作普通字符处理,而不是转义字符。因此在本题中,代码print r" woow"会直接输出字符串" woow",而不会将 解释为换行符。
*Tesla*的主页 *Tesla* | 小虾三级 | 园豆:1152
提问于:2025-11-24 14:41
< >
分享
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册