diff --git a/basics/commands/hello_world.py b/basics/commands/hello_world.py new file mode 100755 index 00000000..bbcb41bd --- /dev/null +++ b/basics/commands/hello_world.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +print("Hello!, World") + + +#This is a full line comment +#This doesn't take space or memory +""" +This is not a block comment +This is a multiline string +""" \ No newline at end of file diff --git a/basics/commands/strings.py b/basics/commands/strings.py new file mode 100644 index 00000000..9ca241d5 --- /dev/null +++ b/basics/commands/strings.py @@ -0,0 +1,7 @@ +#!/usr/bin/env python + +strings = "pass" + "word" + +print(strings.find("o")) + +strings. \ No newline at end of file