In[]:=
countryList=EntityList["Country"];
In[]:=
emptyCountries=Select[EntityList["Country"],MissingQ[#["Population"]]&]
Out[]=
,
In[]:=
countryList=Complement[countryList,emptyCountries];
In[]:=
sortedList=SortBy[countryList,EntityValue[#,"Population"]&];Column@Map[Row[{CommonName[#],#["Population"]}]&,sortedList]
In[]:=
countryNames=Map[CommonName[#]&,countryList];CloudDeploy[Delayed[RandomChoice[countryNames]],"RandomCountry.html",Permissions->"Public"]
Out[]=
In[]:=
englishSpeakingCountries=SelectcountryList,MemberQEntityValue[#,"Languages"],&;englishSpeakingCountryNames=Map[CommonName[#]&,englishSpeakingCountries];
In[]:=
CloudDeploy[Delayed[RandomChoice[englishSpeakingCountryNames]],"RandomEnglishSpeakingCountry.html",Permissions->"Public"]
Out[]=
In[]:=
CloudDeploy[EvaluationNotebook[],"RandomCountry.nb",Permissions->"Public"]