Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions TestFile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,9 @@
def plus(a, b):
return a+b

#creating classes
class summation(object):
def sum(self, a, b):
self.contents = a + b
return self.contents

5 changes: 5 additions & 0 deletions input_output.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#input takes in integer input
age = input("What is your age?")
print("Your age is: " + age)