print() in python
print('hi, baby!')
using a print function
>>>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
using a print function
>>>print (‘ethosspace’,end=”); print(‘ leading software testing provider’)
ethosspace leading software testing provider
>>>x=5
>>>y=8
>>>z=2 * (x+y)
>>>print('A rectangle %d by %d has a perimeter of %d units.'%(x,y,z))
A rectangle 5 by 8 has a perimeter of 26 units.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us