Showing posts from March, 2023
Age Program in the python

Age Program in the python

var1 = 3 var2 = 5 var3 = 45 # if var2 > var3: #     print("Greater") # elif var2==var3: #     print(&…

Read Now
If else elif in the python

If else elif in the python

var1 = 3 var2 = 5 var3 = 45 # if var2 > var3: #     print("Greater") # elif var2==var3: #     print(&…

Read Now
sets in python

sets in python

s = set () # print(type(s)) l = [ 1 , 2 , 3 ] s1 = set ( l ) print ( s1 ) s . add ( 3 ) # s.remove(3) s . intersec…

Read Now
String function in python

String function in python

in the following example we learn the python string function In python var = "in the following example we lear…

Read Now
varaible iin python

varaible iin python

print ( "In the below example we can learn varaiable" ) var = "vishal" var1 = 23 var2 = 23 pri…

Read Now
Load More That is All