Utilisation d'une fonction d'impression
>>>ethosspace = 'Testing Services'
>>>ethosspace
' Testing Services '
>>> a=9
>>> b='Testing'
>>> c=['Prog']
>>> print(a,b,c)
9 Testing ['Prog']
>>>print ('ethosspace'); print('leading software testing provider')
ethosspace
leading software testing provider
Elated Eel