JOKES GENERATOR USING PYTHON

JOKES GENERATOR USING PYTHON


Source Code:- 

 
01
02
03
04
05
06
07
08
09
10
11
# Required Module:- pip install pyjokes
 
import pyjokes
 
# use get_joke to generate Single joke
My_joke = pyjokes.get_joke(language="en", category="neutral")
 
# print the Joke
print(My_joke)
 
# Follow me :- @python_with_shubham
 
 
# Required Module:- pip install pyjokes

import pyjokes

# use get_joke to generate Single joke
My_joke = pyjokes.get_joke(language="en", category="neutral")

# print the Joke
print(My_joke)

# Follow me :- @python_with_shubham

Follow me on Instagram:- Python_with_Shubham


0 Comments