RosettaCodeData/Task/String-append/Python/string-append.py

7 lines
91 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
str = "12345678";
str += "9!";
print(str)