Type hinting of Python is just a toy ?

iamybj at icloud.com iamybj at icloud.com
Fri Jan 4 03:26:26 EST 2019


{ id: 1, name:’abc’, age:99, address:{province:’CA’, city:’SA’}}

Can be represent by:

Class Address {
	public string province;
	public string city;
}

Class Person {
	public int id;
	public string name;
	public int age;
	public Address address;
}



More information about the Python-list mailing list