Advertisement
JumpYScriptsz

The Dumb test

Jun 27th, 2021 (edited)
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.45 KB | None | 0 0
  1. # This was made by a very intelligent person
  2.  
  3. import random
  4.  
  5. # what will be printed at the end?
  6.  
  7. # made my jumpYScriptsz
  8.  
  9. i = input("Am I telling a lie?: ")
  10.  
  11. Dumb = True # no point in this
  12. IsntDumb = False # no point in this either
  13.  
  14. trueFalse = random.choice(["False", "True"])
  15.  
  16. none = "Point of this spacing: none"
  17.  
  18. PointOfThisSpacing = none
  19.  
  20. def WhatsThePointAnymore():
  21.  
  22.     howManyViewsThisWillGet = random.randint(1, 50)
  23.  
  24.     print("this will get",howManyViewsThisWillGet,"views")
  25.  
  26. def WhyDidIEnclude2Functions():
  27.  
  28.     THESCRIPT = ["YES I AM THE CREATOR", "Nah, the creator is the crerator"]
  29.  
  30.     YouDidntEvenUseThis = "YouDidntEvenUseThis"
  31.     OrDidYou = "OrDidYou"
  32.  
  33.     amITheCreatorOrIsTheScript = random.choice(THESCRIPT)
  34.  
  35.     print(amITheCreatorOrIsTheScript)
  36.  
  37.    
  38.  
  39.     isThisCodeDumb = random.choice(["I am very dumb", "I am not dumb!", "I'll let you decide is I dumb or not!"])
  40.  
  41.     print(isThisCodeDumb)
  42.  
  43.     print(trueFalse)
  44.  
  45.     print(YouDidntEvenUseThis)
  46.  
  47.     print(OrDidYou)
  48. def useless():
  49.         print()
  50.         if Dumb == False:
  51.             IsntDumb = True
  52.         elif Dumb == True:
  53.             IsntDumb = False
  54.  
  55.         print(IsntDumb)
  56.  
  57.         print()
  58.  
  59.         print("I have nothing to do")
  60.  
  61.         print()
  62.  
  63.         print(Dumb)
  64.  
  65. useless()
  66.  
  67. print()
  68.  
  69. WhyDidIEnclude2Functions()
  70.  
  71. print()
  72.  
  73. WhatsThePointAnymore()
  74.  
  75. print()
  76.  
  77. print("made by a really epic person")
  78.  
  79. print(PointOfThisSpacing)
  80.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement