""" CSE 163 Suh Young Choi Lesson 2: switch_pairs This program provides scaffolding for the switch_pairs() coding problem, which will be covered in class. """ # Define switch_pairs up here! def main(): print(switch_pairs("hello there")) if __name__ == '__main__': main()