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
In-Band Management Configuration in ACI

High-Level Objective The goal is to enable  APICs, leaf switches, and spine switches  to: Use  in-band management IP addresses Carry management traffic  over the ACI fabric data plane Reach  external

 
 
 
Debounce Timer in Cisco ACI

Understanding Interface Flapping and the Debounce Timer in Cisco ACI Interface flapping on Cisco ACI leaf switches is one of the most commonly misunderstood issues in environments connected to WAN, DW

 
 
 

Comments


Follow me

© 2021 by Mukesh Chanderia
 

Call

T: 8505812333  

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