Build string variable with embedded quote (for hyperlink)

I cannot build a string variable that has quotes inside it.

inLink = “www.apple.com
inLinkText = “Apple Computer”

var = “” + in_LinkText +“

When I print var I get

Apple Computer

No matter what I try I cannot get a quote mark before the www and after the com.

var = """" + in_LinkText +""""

add four quotes in the start and in the end then it will print the string in double quotes.

like variableString=“”“”+ Apple Computer+“”“”

it will print “Apple Computer”

hope it will work :slight_smile: