01

๐Ÿงถ Tags:: #Python_Basics
Down:: 06
๐Ÿ—ƒ Resources:: Playlist
2023-12-05 | 16:52

1st code

Print("Hello World")

# Result - Hello World

Escape Sequence Character and Comment

print("Hey!\nHow are you doing")

# Hey!
#	  How are you doing

'''
Multi
line
comment
'''

"""
Multi
line
comment
"""

Double Quote Escape Sequence Character

print("Hello, this is \"Varun\"\nand I'm trying to learn Python")

# Hello, this is "Varun
# and I'm trying to learn Python

Separator

print("Hey", 6, 7, sep="~")

# Hey~6~7

print("Hey", 6, 7, sep="~", end="009\n")
print("Varun")
# Hey~6~7009
# Varun

print("Hey", 6, 7, sep="~", end="009\n")
print("Varun")
# Hey~6~7009
# Varun