Discuss / Python / 我简单点写下么好了

我简单点写下么好了

Topic source

lewin_xu

#1 Created at ... [Delete] [Delete and Lock User]
在此插入代码

```

print('n = 123') print ('f = 456.789' ) print ('s1 = \'Hello, world\'') print ('s3 = r\'Hello, "Bart"\'') print ('s4 = r\'\'\'Hello,') print('Lisa!\'\'\'')

Iron_里昂

#2 Created at ... [Delete] [Delete and Lock User]

转义字符用的真6! 另外提供部分的另一种表达方式: S1 print("'Hello,world'") Lisa!''' print("Lisa!'''")

print('n=123\nf=456.789\ns1=\'hello,world\'\ns2=\'Hello,\\'Adam\\'\'\ns3=r\'Hello,\'\'Bart\'\'\'\ns4=r\'\'\'Hello,\nLisa!\'\'\'')

橘次二

#4 Created at ... [Delete] [Delete and Lock User]
#Test
print("n = 123\nf = 456.789\ns1 = \'Hello,world\'\ns2 = \'Hello,\\\'Adam\\\'\'\ns3 = r\'Hello,\"Bart\"\'\ns4 = r\'\'\'Hello,\nLisa!\'\'\'")

  • 1

Reply