Skip to main content

Posts

  Animated Indian Flag using Html and CSS Hey guys, hope you enjoyed this video and knew something about that how to make Animated Indian Flag . If you like this video and gained some knowledge then make sure to hit the like and subscribe button and also share this video to your friends and family so that they can also get some knowledge about this. I you want to see this video "Animated Indian Flag Using html and css" then click 'here' Source Code Html code as described in the video  <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Indian Flag </ title >     < link rel = "stylesheet" href = "style.css" > </ head > < body >     ...
Recent posts
Tree using Python  Hey guys hope you enjoyed this video and learn something new about turtle module then make sure to hit the like share and subscribe button and also share this video with your friend and family sol that they can also get to knew If you want to see "Tree using python" video then click 'here' Source Code from turtle import * import colorsys hideturtle () speed ( 0 ) bgcolor ( 'black' ) pensize ( 5 ) h = 0.7 lt ( 90 ) def tree ( x ):     global h     c = colorsys . hsv_to_rgb ( h , 1 , 1 )     color ( c )     h += 0.004     if ( x < 10 ):         return     else :         fd ( x )         lt ( 30 )         tree ( 3 * x / 4 )         rt ( 60 )         tree ( 3 * x / 4 )         lt ( 30 )         bk ( x ) tree ( 70 ) done ()
Squary Desing in python  Hey guys hope you enjoyed this video and learn something new about turtle module then make sure to hit the like share and subscribe button and also share this video with your friend and family sol that they can also get to knew If you want to see 'Squary Design in Python' then click 'here' Source Code import turtle turtle. bgcolor ( 'black' ) turtle. speed ( 0 ) turtle. setup ( 700 , 700 ) col = ( "blue" , "blue" , "red" , "red" ) for i in range ( 450 ):     turtle. pencolor (col[i % 4 ])     turtle. width ( 2 )     turtle. forward (i)     turtle. right ( 89 )     turtle. forward (i * 2 )     turtle. right ( 89 )

How Currency Converter are made just by using python???

  How Currency Converter are made just by using Python??? Hey guys, hope you enjoyed this video and knew something about that how the Currency Converter are made by just using python. If you like this video and gained some knowledge then make sure to hit the like and subscribe button and also share this video to your friends and family so that they can also get some knowledge about this. If you want one video on GUI and API then comment below. Video's Link Source Code with open ( 'Currency.txt' ) as f :     lines = f . readlines () while True :     currencyDict = {}     for line in lines :         parsed = line . split ( " \t " )         currencyDict [ parsed [ 0 ]] = parsed [ 1 ]     amount = int ( input ( "Enter amount: \n " ))     print ( "Enter the name of the currency you want to convert this amount to? Choose within available option" )     [ print ( it...

3d Design in Python

3D Design Using Python  Hey guys hope you enjoyed this video and learn something new about turtle modules. Then make sure to hit the like and share and subscribe button and also share this video with your friends and family so that they can also get to know some thing about python programming language and coding also. Don't forget to leave a comment in this website and my video also. Video's Link Source Code from turtle import * speed ( 0 ) #Choosing our drawing speed bgcolor ( "black" ) #Colour of the background pencolor ( "magenta" )#Colour for our drawing for i in range ( 120 ): #And here is the looping is start     right ( i )     circle ( 200 , i )     forward ( i )     right ( 90 )     forward ( i ) hideturtle () #This will hideturtle after the drawing, you can also use hideturtle afte r importing turtle module done ()

Rings in Python

What is  Python , What is  Python Programming language , Why  Python,   What is Python used for ,  Python 3.10.0 ,  10 reason why should you learn Python ,  Why Python is best for beginner in programming ,  Learn Python for free Rings in Python  Hey guys, hope you enjoyed this video and knew something about turtle module and 3D designing in Python . So make sure to hit the like and subscribe button and also share this video to your friends and family so that they can also get some knowledge about this Video's Link                                Source Code ''' Created by Nikhil Mahato Date = 2/2/22 From India ''' import turtle turtle . bgcolor ( 'black' ) turtle . speed ( 0 ) turtle . pensize ( 2 ) turtle . pencolor ( 'red' ) def drawCircle ( radius ):     for i in range ( 10 ):         turtle . circle ( radius )     ...

ATM in Python- Crazy Coding

  What is  Python , What is  Python Programming language , Why  Python,   What is Python used for ,  Python 3.10.0 ,  10 reason why should you learn Python ,  Why Python is best for beginner in programming ,  Learn Python for free ATM Using Python  Hey guys, hope you enjoyed this video and knew something about that how make ATM using Python . Then make sure to hit the like and subscribe button and also share this video to your friends and family so that they can also get some knowledge about this. If you have any doubt about Python basics then comment me, I will surely make a tutorial on it :) If you have any doubt then feel free to ask :) Video's Link Source Code import time print ( "Welcome to the Crazy Coding Bank " ) time . sleep ( 1 ) print ( "Please enter your atm card" ) time . sleep ( 1 ) print ( "You have succesfully entered your atm card" ) time . sleep ( 1 ) user_balance = 500 password = 0000 pin = int ( input ( "Enter you...