字符串基础
guard. return
guard关键字:“确保条件成立”关键字,guard 条件... else{print("...")}
如:guard money >=price else {
print("No more money can buy anything")
return
}