#!/usr/bin/python #coding:utf-8 hehe = '123'; obj = {'name': 'joel', 'sex': 'male', hehe: 'just hehe'};# é®å¼å¨å建æ¶å°±å¯ä»¥æ¯åéï¼è¿ä¸ªæ¯js强大 obj['age'] = 18; other = 'otherMsg'; obj[other] = 'he is so cool!'; # worked~ like javascript for key,value in obj.items(): print key + ' is ' + str(value);# str() å° int转å为str