Skip to main content

Posts

Showing posts from January, 2022

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...

3D Design using Python

  What is  Python , What is  Python Programming   language , Why  Python , What is  Python used for ,  Python 3 ,  10 reason why should you learn Python  , Why  python is best for beginner in programming , Learn  Python for free 3D Design Using Python  Hey guys, hope you enjoyed this video and knew something about turtle module and 3D designing in Python also. 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 If you don't know anything or something about turtle module then comment me, I will surely make a full tutorial on it :) If you have any doubt then feel free to ask :) Video's Link            Source Code import turtle as t import colorsys t . bgcolor ( "black" ) t . speed ( "fastest" ) t . pensize ( 2 ) t .setpos( 50 , 0 ) hue = 0.0 t . hideturtle () for i in range ( 400 ):   ...

Indian Flag Using Python Crazy Coding

What is  Python , What is  Python Programming   language , Why  Python , What is  Python used for ,  Python 3 ,  10 reason why should you learn Python  , Why  python is best for beginner in programming , Learn  Python for free Indian Flag Using Python Happy Republic Day, hope you enjoyed this video and knew something about turtle module. 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   import turtle flag = turtle . Turtle () flag. speed ( 3 ) flag. pensize ( 5 ) flag. color ( '#000080' ) def draw ( x , y ):     flag. penup ()     flag. goto ( x , y )     flag. pendown () #Ashoka Cha...

CrazyCoding

What is  Python , What is  Python Programming   language , Why  Python , What is  Python used for ,  Python 3 ,  10 reason why should you learn Python  , Why  python is best for beginner in programming , Learn  Python for free What is Programming? Programming is process of performing a particular computation. Programming helps us communicate with computer with their own language. There are many different programming languages like (Python, C, C++, C#, Java and many more) which helps us to communicate with computer but they all are made for different purposes. Like Java is used for back-end development and it is also known as server side language, C is used for developing Internet browser as well as their extension.  What is Python ? Python is a programming language which helps us to communicate with computer. It conceived in the late 1990s and in December 1998 by Guido van Rossum.   What are the uses of Python? You might be ...