1

I want to Make a list of large cities in Germany

 CityData[{Large, "Germany"}]

enter image description here

but in Documentation Center answer is in short form

enter image description here

How to get the answer like this?

Sorry for my English. Thanks!

vito
  • 8,958
  • 1
  • 25
  • 67

2 Answers2

1
cities = FullForm[CityData[{Large, "Germany"}]]
bbgodfrey
  • 61,439
  • 17
  • 89
  • 156
Andre
  • 11
  • 1
  • 1
  • 3
    That will generate the output depicted in the first picture. OP seems to want the output in the second picture. – J. M.'s missing motivation Feb 27 '16 at 13:28
  • You can format inline code and code blocks by selecting the code and clicking the {} button above the edit window. The edit window help button ? is also useful for learning how to format your questions and answers. You may also find this this meta Q&A helpful – Michael E2 Feb 27 '16 at 13:45
1

Maybe you should go to Preference->Evaluation and make sure the setting of Format type of new output cells is StandardForm as follows:

enter image description here

Kevin Xie
  • 33
  • 6