Can anyone please guide me on how to achieve the below using python sdk which i have tested from powershell .
$vnet = @{
Name = 'myVNet'
ResourceGroupName = 'CreateVNetQS-rg'
Location = 'EastUS'
AddressPrefix = '10.0.0.0/16'
}
$virtualNetwork = New-AzVirtualNetwork @vnet
$subnet = @{
Name = 'default'
VirtualNetwork = $virtualNetwork
AddressPrefix = '10.0.0.0/24'
}
$subnetConfig = Add-AzVirtualNetworkSubnetConfig @subnet
$virtualNetwork | Set-AzVirtualNetwork
I have followed this document : https://learn.microsoft.com/en-us/azure/virtual-network/quick-create-powershell and tested the same from powershell but my use case is from python and i can't seem to find any relevant document or sample for it .

