Advertisement
KodingKid

Two moods when scripting - not just limited to python btw

Apr 30th, 2021
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.48 KB | None | 0 0
  1. print("There are two types of scripting 'moods'.")
  2. print("Mood 1:")
  3. def function1(): #so as you can see here, the function which has been named function1 has been defined to make the string1 which makes the print script which prints "hello world"
  4.     string1 = print("Hello World!")
  5. print("Mood 2:")
  6. print("hi")
  7.  
  8. #for more scripting from me, see some of my other epic scripts such as:
  9. #https://pastebin.com/FKbinHk1
  10. #https://pastebin.com/zDHVTFha
  11. #https://pastebin.com/tMsLmAAv
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement