Python的表达式中r是什么意思呀?

表达式 r'c:\windows\notepad.exe'.endswith(('.jpg', '.exe')) 的值为_______。

r是raw string的意思,即原始字符串,不进行任何转移,多用于正则。
表达式 r'c:\windows\notepad.exe'.endswith(('.jpg', '.exe')) 的值为___True____。