Upper

5 min Niveau 7

Introduction

Cette fonction appelle la fonction str.upper sur chaque élément d'un tableau pour retourner les éléments en majuscules du tableau.

import numpy as np 
print np.char.upper('hello') 
print np.char.upper(['hello','world'])

Voici son résultat -

HELLO
['HELLO' 'WORLD']
logo discord

Besoin d'aide ?

Rejoignez notre communauté officielle et ne restez plus seul à bloquer sur un problème !

En savoir plus