Hướng dẫn thử thách
1 / 18
Step 2
In Python, you can combine strings using the `+` operator. This is called concatenation. Here is an example:
```python
greeting = 'Hello' + 'World'
print(greeting) # Output: HelloWorld
```
Create a variable `full_name` by concatenating `first_name` and `last_name`. Then print `full_name`.
Vượt qua bài kiểm tra hiện tại để mở khóa bài tiếp theo.
main.py
UTF-8 • Tab Size: 2Kiểm tra bài:⌘↵