python on code example
Example 1: python language
#for python comments
Example 2: python
# Action Statements
print('hello world')
# Varables
x = 12
y = input("Prompt")
n = True
if n:
# Some Stuff in here
def N(Terms):
# Some Stuff in here
N(x)
Example 3: python
Python is an interpreted, high-level and general-purpose
programming language.
Example 4: python
s = 0
for x in seq:
s += x