Python 86
[Python 100] Python 100
(Python 2.0+)
#!/usr/bin/python
# -*- coding: UTF-8 -*-
if __name__ == '__main__':
a = "acegikm"
b = "bdfhjlnpq"
#
c = a + b
print c
acegikmbdfhjlnpq
[Python 100] Python 100
| [ Web Proxy ] |
| Viewing: https://www.runoob.com/python/python-exercise-example86.html | [Back] [Original] |
[Python 100] Python 100
acegikmbdfhjlnpq
[Python 100] Python 100
| Web Proxy Viewer | New URL | Original Page |
kamiya
mec***[email protected]
Python2.x Python3.x
if __name__ == '__main__': str = 'qerqwe' str2 = 'dsdd' str3 = 'wrwr' strjoin = '' strjoin = strjoin.join([str,str2,str3]) print(strjoin)kamiya
mec***[email protected]