break and continue statement in python
i = 0 while ( True ) : print ( "Enter the number" ) uinput = int ( input ()) if ( uinput <…
i = 0 while ( True ) : print ( "Enter the number" ) uinput = int ( input ()) if ( uinput <…
i = 0 while ( i < 34 ): i = i + 1 if ( i + 1 < 5 ): continue if ( i > 34 ): b…
list_data = [ "asd" , "visalasd" , "kaka" , "data" ] list_data1 = [[ "…
#faulty calculator ...... * / + print ( "Enter First Number" ) first_nu = int ( input ()) print ( "En…
var1 = 3 var2 = 5 var3 = 45 # if var2 > var3: # print("Greater") # elif var2==var3: # print(&…
var1 = 3 var2 = 5 var3 = 45 # if var2 > var3: # print("Greater") # elif var2==var3: # print(&…
s = set () # print(type(s)) l = [ 1 , 2 , 3 ] s1 = set ( l ) print ( s1 ) s . add ( 3 ) # s.remove(3) s . intersec…
write a program user input the person name and the dictionary list you find and return the marks of the person Dictiona…
Dictionary in the python Disctionary is nothing but Key and Value pair dic = {} print(type(dic)) The following is t…
in the following example we learn the python string function In python var = "in the following example we lear…
addition of the two number in the python # input in the python print ( "Enter the value which you want add First…
the following is the missed list in the python shop_list = [ "milk powder" , "baba chivda" , &q…
string to integer convert in the python var4 = "23" var5 = "23" print ( var4 + var5 ) In the abv…
print ( "In the below example we can learn varaiable" ) var = "vishal" var1 = 23 var2 = 23 pri…
PS C:\python code> python main.py File "C:\python code\main.py", line 2 print(Hello world 6) …
import flask # hash use for single line comment hash use for single line comment print ( "Hello world 6" )…