-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDay4.py
More file actions
24 lines (17 loc) · 683 Bytes
/
Day4.py
File metadata and controls
24 lines (17 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Title : Comments, Escape character sequences and print statement
# This print statement will throw an error because we entered a new line
# print("Hey , I am a good boy,
# and you are a good boy too")
# to resolve this use "escape sequence characters eg \n"
print("Hey , I am a good boy\nand you are a good boy too")
# This introduces a new line
# This is a single line comment
print("Hello World") # A comment can be added after the statements as well
# A multiline comment can also be done by using """ """ or ''' '''
'''
Yo this is all a multiline comment example
never mind the text written
a lot of my mind is
chipi chipi chapa chapa
dubi dubi daba daba
'''