DEV Community

Sai likhitha Aravapalli
Sai likhitha Aravapalli

Posted on

python basics-1

today i've learnt about basics of python.
to print a string or statement we use print() function.we can use either " " or '' with in print() function like print("hello") or print('hello').we can even print multiple strings at a time like print("hello",1,"hii").we can separate these words using a delimiter like print("hello world",1,'hii',sep='$')

Top comments (0)