Create Stunning ASCII Art: Python Code to Generate 'Happy Birthday' in Various Font Styles Install : pip install pyfiglet code import pyfiglet # Generate ASCII art for "Happy Birthday" using the "slant" font wish = pyfiglet . …
Continue Readingimport time def countdown ( time_sec ): """ A function that counts down from a specified number of seconds. """ while time_sec : mins , secs = divmod ( time_sec , 60 ) timeformat = ' {:0…
Dice Game Simulation Using Python With Random Module create a file dicegame.py Installation : $ pip install random # how to create a dice game simulationusing python with random module in codepythonic import random player1_score = 0 player2_score =…
Continue ReadingMongoDB + Django Rest Framework CRUD Rest API example In this tutorial, we’re gonna create Python 3/Django & MongoDB CRUD example with Django Rest Framework for building Rest Apis. You’ll know: How to setup Django to connect with MongoDB Database How …
Django-Rest-Framework-Authentication This project explains working of Django's Rest framework authentication system. We do API authentication using JWT tokens. We create a custom user class that modifies existing Django's base User class to login u…