JOKES GENERATOR USING PYTHON
Source Code:-
01 02 03 04 05 06 07 08 09 10 11 | # Required Module:- pip install pyjokesimport pyjokes# use get_joke to generate Single jokeMy_joke = pyjokes.get_joke(language="en", category="neutral")# print the Jokeprint(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

0 Comments