fork download
  1. #!/usr/bin/python
  2. # coding:utf-8
  3.  
  4. #map Create
  5. lst=[0]*39
  6.  
  7. #building information
  8. building0={'mapName':'GO', 'Color_group':'0', 'List_price':'0', 'Construction_cost':'0', 'Remarks':'Starting_point'}
  9. # mapName:Color_group:List_price:Construction_cost:Remarks
  10. building1={'mapName':'Mediterranean Street', 'Color_group':'1', 'List_price':'60', 'Construction_cost':'50', 'Remarks':'No_information'}
  11. #Color_group=0 White_Blank Color_group=1 Brown Color_group=2
  12.  
  13. print building0['mapName']
  14. print building1['mapName']
Success #stdin #stdout 0s 23352KB
stdin
Standard input is empty
stdout
GO
Mediterranean Street