Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add files via upload #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
65 changes: 65 additions & 0 deletions pythonTutorial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
#Hello World goes to the console
print("Hello World")

#accepts user text from the console and stores it in name
name = input("Please enter your name: ")

#says hey to name
print("Hey ", name, "! :)")

#control structures: if/elif/else block <-(for making decisions)
age = int(input("What is your age?: "))

if age >= 18:
print("You are an adult\n") #Note: \n prints a new line (like pressing enter)
elif age > 0:
print("You are a child\n")
else:
print("What???")


#i goes from 0 to 9 <- note that the range is 10 while the last
#number is 9...can you see why? (count the amount of numbers from 0 to 9)
for i in range(10):
print(i)

#makes a new line(like pressing enter)
print("\n")

#i goes from 4 to 10 <-(not including 10)
for i in range(4,10):
print(i)

#another new line
print("\n")

#i goes from 4 to 10 but is incremented by 2 each time
for i in range(4, 10, 2):
print(i)

#another newline
print("\n")
#broken while loop
''' <- Note that this is how you comment out multiple lines of code
xyz = 10
while xyz > 0:
print xyz
'''

#this while loop works
xyz = 10
while xyz > 0:
print (xyz)
xyz = xyz - 1

print("\n")

#quadratic formula: y = -b +- Sqrt[b^2 - 4ac]/(2a)
a = 1
b = -2
c = 1

y1 = -b + (b**2 - 4 * a * c)**0.5 / (2*a)
y2 = -b - (b**2 - 4 * a * c)**0.5 / (2*a)
print("y1 = ", y1, "\ny2 = ", y2)
print("\nGoodbye :)")