[ create a new paste ] login | about

Jaqknife

Name: Jack Savage
Email:
Site/Blog:
Location: arizona
Default language: Python
Favorite languages: Python, C++, Javascript, C#
About:

Saved pastes by Jaqknife:

Python, pasted on Jul 14:
1
2
3
4
5
def find_max(num_1, num_2):
   max_val = 0.0

   if (num_1 > num_2):  # if num1 is greater than num2,
      max_val = num_1   # then num1 is the maxVal.
...
view (18 lines, 1 line of output, 1 comment)
Python, pasted on Jul 12:
1
2
3
4
5
x=0

for i in range(1,101):

    x+=1
...
view (13 lines, 100 lines of output)