Mr. Burnham saying Hi
- I'll post links Wednesday
- Assignment - Duration: 5 Min
- Link: FlipGrid Link
- Attendance: Google Classroom
- Instructions & Expectations: Do the following: Got to Flipgrid and post a quick video... it can be up to 3 min long... or as short as you want... but check in and post something. Then check the Google Classroom for Attendance
2) 3D Design and Tinker Cad
- Lab - Duration: 1-3 hours (due Friday)
- Link: Assignment Lecture - What Do I Want You To Do
- Instructions & Expectations: Please watch the Assignment Introduction Video and then do the following:
- Tuesday:- Pick a project to work on in TinkerCAD or some other 3D tool. Do this today. See the Google Classroom assignment. If you pick something on Thingiverse to modify, submit the link to the original in this assignment too.
- Wednesday and Thursday - Work on your design. This will probably take 1-2 hours. If you start from a finished design off Thingiverse, you need to modify your design at least 20%.
- Friday (or Before) Turn in a file named firstName-LastName-DesignName.stl
- I think if you copy it to your Google Drive, and share it I'll be able to access it... but you can also email it to svctemecha@metroed.net
- Dig Deeper: See what lots of companies are doing with 3D printers to solve the PPE shortage. Extra Credit - find some links and write me 200+ words on what you found and why it's cool. See Google class room for "Solving PPE with 3D"
- Office Hours: I'll host 2 office hours on Wednesday and Friday @ 8:30-9:30 AM and 1:30-2:30 PM. You can come to either, or the other or both. I'll be answering Python Questions, doing code examples, and showing you some other Python stuff.
- LAB - Duration: 2-3 hours
- Link: Cisco Python Sign In
- If you have problems, Please take a look at this Python Class Sign In presentation. If you gave me a personal email, then you should have got a new account invite. If you did not give me a personal email, then I used your @metroed.net email and you may have just got a notification of the class enrollment... just try the link and use your @metroed.net email.
- Instructions & Expectations:
- Finish Lesson 1 Module 1,2,3
- Write a program that:
- Ask the user to rolls 2 dice <-- This will be an input question, maybe just a hit any key, maybe print what they type, and it can be the secret whisper you blow on the dice as you roll them...
- print the value of each dice, add then and print the total <-- some math and print()
- If they are both 1, print "Snake Eyes" <-- If/else
- if they are 7, Print "Craps"
- If they are doubles, print "Doubles"
- Keep a running total, and when they get to 100 quit <-- More math
- other wise keep asking them to roll again <-- some type of loop wrapped around all your code to jump back to the top to ask them to roll again.
- If they enter a "q" or "Q" then quit using a break
- Extra Credit - If they roll 2 doubles in a row, print "Hot Roller"
import random
keepPlaying = 0
while keepPlaying < 100 :
throw = input('Click any key to roll ')
#If they enter a "q" or "Q" then quit using a break
print('Your Typed', throw)
# get a random number
dice1 = random.randint(1,6)
print("dice 1 = ",dice1)
# gat another random number
# look up how to get a random number
# Add up the dice
#print the dice total
#if dice1=1 and dice2-1 :
#roundTotal=roundTotal+diceTotal
print('Bye')
- I'll add another program here when you have done the first one...
- How to Submit Assignment: If you do your code in Repl.it, just turn in a link to the code. Otherwise put it in a google doc and send it
- I can actually see your progress in the Cisco class, the time you spend on each module and which you have completed.. Those of you who have not logged in to the class, please do that. Email me or call me jburnham@metroed.net we can setup a google hangouts call if you are having issues.
- Where to Get Support?: Look here to learn more...
- Python 4 Every One - Reference Guide <-- I look here first for examples
- Watch a lecture on each chapter from the Reference Guide above?
- REPL.IT: If you need to get signed up with your Repl.it account Please do. This is where you will do and turn in much of your work. See my quick lecture on Setting up your Repl.it account. There is a Google Assignment in the stream to let me know were able to do this... it's late now, please do it. Dig deeper Examples: https://repl.it/talk/learn/Python-Advanced-Concepts-Explanation/7382
- Instructions & Expectations:
- There is a Google Assignment in the stream to let me know.
4) Ben Eater's 8 Bit Computer - Stay Tuned... more on this this week. Sorry it's taking so long to get this booted...
Helpful Links
- TinkerCAD
- Instructables - Make Something
- Udemy - My Courses (specifically the Arduino Workshop and Electronics Engineering Technology class)
- FlipGrid
- Cisco Net academy
- Coding Browser Site Repl.it
No comments:
Post a Comment