File size: 157 Bytes
dfc542c
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from pydantic import BaseModel,Field

class CountryDetails(BaseModel):
    country_name:str
    continent:str
    population:int
    area:int
    capital:str