Skip to content

Commit f54ffc8

Browse files
committed
Added second project code
1 parent 9b99225 commit f54ffc8

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

second_code.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print("Second project code")

string_manipulation.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#print() helps us to show output on the console.
2+
print("Hello world\nHello world\nHello world")
3+
print("hello"+" "+"Amrata")
4+
#print("Hello") # ❌ Wrong: extra space before print
5+
print("A", "B", "C",sep="-")
6+
print("Hello",end="!!!")
7+
print("World")
8+
print() #blank line
9+

0 commit comments

Comments
 (0)