Python Syntax
def test():
print ("test")
print("test2")
string = "string"
number = 10
test()
x = 1 + 2 \ #newline character makes indentation unimportant for the next line
+ 3
print(x)Last updated
def test():
print ("test")
print("test2")
string = "string"
number = 10
test()
x = 1 + 2 \ #newline character makes indentation unimportant for the next line
+ 3
print(x)Last updated