Add
10 min
Niveau 7
Introduction
Cette fonction effectue une concaténation de chaînes de caractères par éléments.
import numpy as np
print 'Concatenate two strings:'
print np.char.add(['hello'],[' xyz'])
print '\n'
print 'Concatenation example:'
print np.char.add(['hello', 'hi'],[' abc', ' xyz'])
Sa sortie serait la suivante -
Concatenate two strings:
['hello xyz']
Concatenation example:
['hello abc' 'hi xyz']
Besoin d'aide ?
Rejoignez notre communauté officielle et ne restez plus seul à bloquer sur un problème !