According to Data Science Python Topic-1

 print("Hello World")

Hello World

print(7)

7

print('true')

true

print('false')

false

print('Hello',1,4.5,True)

Hello 1 4.5 True

print('Hello',1,4.5,True,sep='/')

Hello/1/4.5/True

print('Hello' ,end='-')

print('world!')

Hello-World

print('Hello' ,end='/n')

print('World')

Hello/nWorld





Comments

Popular posts from this blog

According to Data Science Topic-13 Modules

Functions in Python:

According to Data Science Topic-12 If else program examples