
Swift 5.1 How do you place a variable in a string?

In swift, string interpolation is done by placing () within strings. Like this:
let x = 10
let string = "x equals (x) and you can also put expressions here (5*2)"
//Will Print
// "x equals 10 and you can also put expressions here 20)"