Let's combine what we've learned! String concatenation lets us join strings together using +:
To mix strings and numbers, convert the number to a string with str():
Or use f-strings (formatted strings) — the modern way:
greeting = 'Hello' + ' ' + 'World' print(greeting) # Hello World
Run your code
420 USD is 62790.0 JPY