#!/usr/bin/python #coding:utf-8 import pdb ; a = "aaa" pdb.set_trace();# 在mac下有问题。。。 b = "bbb" c = "ccc" final = a + b + c; print final