Skip to content

Instantly share code, notes, and snippets.

View 18kdr's full-sized avatar
🎯
Focusing

Kartikay Rane 18kdr

🎯
Focusing
View GitHub Profile
@18kdr
18kdr / string_printing.py
Created October 30, 2021 10:44 — forked from Priyanka-1308/string_printing.py
how to print string in different ways in python
# Here we can work upon string creation
s1 = "Priyanka"
s2 = "Pawar"
# concatination of two strings
print(s1+s2)
print("Kirti", "Munot")
print("Kirti" "Munot")