#String tests a = "hello world" b = """hello world""" c = 'world hello' d = '''world hello''' print(a) print(b) print(c) print(d)