Discuss / Python / emm 我试了好久不知道对簿

emm 我试了好久不知道对簿

Topic source

n = 123 f = 456.789 s1 =r"'Hello, world'" s2 = "'Hello,\'Adam\''" s3 ='r\'Hello,"bart"\'' s4 = "r\'''"'Hello,\nLisa!'"'''"

print('# coding: utf-8 ') print('n =',n) print('f =',f) print('s1 =',s1) print('s2 =',s2) print('s3 =',s3) print('s4 =',s4)


  • 1

Reply