1
0
Fork 0
ejv2.cc/content/blog/old/2015/top-tip-2/index.md
2024-08-07 15:32:40 +01:00

22 lines
328 B
Markdown
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "Top tip 2!"
date: "2015-12-06"
categories:
- Old Blog
---
Using parameters in a function is a good way to get values to use. For example:
`def helloworld(message):`
`print('hello', message, 'world!')`
 
If I called this function like this:
helloworld('minecraft')
It would output
hello minecraft world