HOME/Articles/

simple python-example-86 (snippet)

Article Outline

Python example 'python-example-86'

python-example-86

Python example: python-example-86

#!/usr/bin/python
# -*- coding: UTF-8 -*-

if __name__ == '__main__':
    a = "acegikm"
    b = "bdfhjlnpq"

    # 连接字符串
    c = a + b
    print(c)