Discuss / Python / 交作业

交作业

Topic source

M-HEDGEHOG

#1 Created at ... [Delete] [Delete and Lock User]
n = 123
print(n)
f = 456.789
print(f)
s1 = 'Hello, world'
print(s1)
s2 = 'Hello, \'Adam\''
print(s2)
s3 = r'Hello, "Bart"'
print(s3)
s4 = r'''Hello,
Lisa!'''
print(s4)

  • 1

Reply