Posts

Showing posts from November, 2023

Print statement with python

 print("Abhay", 7, 8, sep="~", end="009\n") print("King") Result: Abhay~7~8009 King

Escape Sequence with Python

 print("Hey I am a \"good boy\"nand this viewer is also a good boy/girl")     print("Hello World")    #This is a 'Single-Line Comment' print("This is a print statement.") print("Hello World!!!")     #Printing Hello World Result: Hey I am a "good boy"nand this viewer is also a good boy/girl Hello World This is a print statement. Hello World!!! Use backslash for escape sequence

Comments # and triple single quotes with Example

 # Hey Harry, Please dont remove this line    # Author : Harry   # Course : 100 Days Of Challenge print("Hey I am a good boy\nand this viewer is also a good boy/girl")     print("Hello World")    #This is a 'Single-Line Comment' print("This is a print statement.") print("Hello World!!!")     #Printing Hello World Result: Hey I am a good boy and this viewer is also a good boy/girl Hello World This is a print statement. Hello World!! with triple single quotes '''  Hey Harry, Please dont remove this line    Author : Harry   Course : 100 Days Of Challenge ''' print("Hey I am a good boy\nand this viewer is also a good boy/girl")    print("Hello World")    #This is a 'Single-Line Comment' print("This is a print statement.") print("Hello World!!!")     #Printing Hello World control plus backslashn se comment aur uncomment dono ho jata hain.

First Python Program With Calculation:

print("Hello World") print(5) print("Bye") print(17*13) RESULT: Hello World 5 Bye 221

Basic Python Code

 Basic Python Code: print("Hello, World!") print("I have  start to learn  the Python  Code on 8th Nov 2023")