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
PBR Concepts

What is a Health Group? A Health Group  is a configuration object used to group specific PBR destination interfaces—typically the consumer and provider interfaces of the same service node (such as a f

 
 
 
Active/Standby F5 Across Different ACI Pods

Normal L3Out vs Floating L3Out Explained Understanding Cisco ACI Multi-Pod Architecture In a Cisco ACI Multi-Pod design: Each Pod has an independent IS-IS control plane Endpoint learning is maintained

 
 
 
Multi-site Traffic Flow

This article explains how traffic flows between Endpoint Groups (EPGs) across multiple sites in Cisco ACI using Nexus Dashboard Orchestrator (NDO). We will walk through three common design scenarios a

 
 
 

Comments


Follow me

© 2021 by Mukesh Chanderia
 

Call

T: 8505812333  

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