-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscripts.py
More file actions
15 lines (8 loc) · 741 Bytes
/
Copy pathscripts.py
File metadata and controls
15 lines (8 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Python 3 - Scripts
# A python scripts is basically just a text file in which you input your Python code in order to build larger applications
# Since the Pyton Interpreter is suitable for small tasks and chunks of code only,Python scrips allow you to build programs having hunderds or thousands of lines of codes, make changes to your code and run it as many times as you want
# The main thing you have to remembr here is that each python file/script must have the ".py" extention
# Lets write our first python script
# For this we are going to use a Python function that does nothing more than to just print the characters in between its parentheses to the screen.
print("Greetings Everyone!!!")
# Next - User input