top of page

PYTHON

  • Writer: Mukesh Chanderia
    Mukesh Chanderia
  • Jan 16, 2023
  • 1 min read

Search Everywhere Double Shift


Go To File Ctrl+Shift+N


Recent Files Ctrl+E


Navigation Bar Alt+Home


Print "Hello Mukesh" --> Right Click + Run


Variable


Variable is a container which holds data.


Data can be changed


Number = 10


Number = 12


str "Hello"

a=b=c=20


print(a)

print(b)

print(c)


---------------------------


a,b,c=5,10,"hello"


print(a)

print(b)

print(c)


a=5

b=10

c = hello


Basic Operator


print(x+y)

print(x+y)


print(y>x)


Output


15

50

True


str="hello world"


print('x' in str)


String


print("My name is %s" % ('sunil'))


print("My name is %s and my roll no is %d" % ('sunil',1))





 
 
 

Recent Posts

See All
Quality of Service (QoS) in Cisco ACI

Configuring Quality of Service (QoS)  in Cisco ACI (Application Centric Infrastructure)  involves creating and applying QoS policies that...

 
 
 

Comments


Follow me

© 2021 by Mukesh Chanderia
 

Call

T: 8505812333  

  • Twitter
  • LinkedIn
  • Facebook Clean
©Mukesh Chanderia
bottom of page