#76trombones
Explore tagged Tumblr posts
moonraker0022 · 5 years ago
Photo
Tumblr media
My first show at the @goodmantheatre is the very first show I ever saw. (The smile never left my face!) Great catching up with Hannah who doesn’t have an Instagram. • • • • • • • #chicago #theater #secondcity #yearofchicagotheater #theatre #il #illinois #gary #in #iowa #rivercity #ia #indiana #landoflincoln #goodmantheater #theloop #themusicman #76trombones #iowastubborn #wellsfargowagon #pickalittletalkalittle #trouble #goodnightmysomeone #tiltherewasyou #boxseats #312 #60602 #chi #chicagolife #chicagotheater (at Goodman Theatre) https://www.instagram.com/p/B1QDVajheMa/?igshid=1kth7de2n76kd
1 note · View note
lesliezemeckis · 2 years ago
Photo
Tumblr media
A night on Broadway … - @hughjackman gives his ALL. What a show, what an ensemble, @suttonlenore is hilarious … the audience hummed and sang along and jumped to their feet at the end (not always deserved when they do but this show YES) - I just wonder if one doesn’t dress for the theatre (and so many men in shorts and flip flops! 🤮 when do they dress up? Their funeral? Cuz someone else dressed them. Come on peeps show some respect for those hard working actors and give them something pretty to look at. - #theWinterGarden #broadway #nyc #TheMusicMan #cheers #dresslikeanadult #76Trombones #i❤️ny (at The Music Man on Broadway at the Winter Garden Theatre) https://www.instagram.com/p/Cihsmy1LVlg/?igshid=NGJjMDIxMWI=
1 note · View note
divinelyutterlyhappy · 6 years ago
Photo
Tumblr media
Yesterday, we passed by Meredith Willson’s boyhood home and The Music Man Square on our way out of Mason City. River City (there’s trouble there!) is based on the real life Mason City, where Willson lived. Getting to walk down the street definitely felt like traveling back in time! #wegottrouble #76trombones #musicmansquare #ntctours (at The Music Man Square) https://www.instagram.com/p/Bo6vNKADp0D/?utm_source=ig_tumblr_share&igshid=1vho6nrz04i6n
0 notes
hannahlearnsthings · 7 years ago
Text
Chapter 2 Notes - Think Python
Chapter 2 Variables, expressions and Statements One of the most powerful features of a programming language is the ability to manipulate variables. A variable is a name that refers to a value 2.1 Assignment statements An assignment statement creates a new variable and gives it value. Example: >>>message='And now for something completely different >>>n=17 >>>pi=3.14 This example makes three assignments. The first assigns a string to a new variable named message. The second statement gives the integer 17 to n. The third assigns a value to pi. A state diagram is a written way of representing variables. it shows the name with an arrow pointing to its value.
2.2 Variable names Programmers generally choose names for their variables that are meaningful. Variable names: Can be as long as you like can contain both letters and number can use uppercase letters (but normally do noy) can use underscore character (_) your_name airspeed_of_unladen_swallow Things that will make a variable name illegal starting a name with a number >>>76trombones='big parade' SyntaxError: invalid syntax Using an illegal character >>>more@=10000 SyntaxError: invalid syntax Using a keyword >>>class='Advanced Theoretical Zymurgy' SyntaxError: invalid syntax The interpreter uses keywords to recognize the structure of the program. They cannot be used as variable names There are 33 keywords for Python. It is not necessary to memorize the list. Keywords are often displayed in a different color. If you try to use one as a variable name, you'll know. 2.3 Operators and operands Operators: special symbols that represent computations like addition and multiplication. Operands: the values the operator is applied to In Python 2, the division operator works differently than how you'd expect. >>>minute=59 >>>minute/60 0 This reason for the discrepancy is because Python is performing floor division. When both operands are integers, the result is also an integer Floor division rounds down to the nearest integer (0) In Python 3, the result of the same division is a float. If either of the operands is a floating-point number, Python performs floating-point division, and the result is a float >>> minute/60.0 0.98333 2.4 Expressions and Statements Expression: a combination of values, variables and operators. A value alone can be an expression A variable alone can be an expression Statement: A unit of code that the Python interpreter can execute So far we have seen two kinds of statements: print assignment Technically and expression is also a statement. The important difference is that an expression has a value; a statement does not. 2.5 Interactive mode and script mode When you work with the interactive mode, you can test bits of code before putting them into a script. If using Python as a calculator: In Interactive mode: >>>miles=26.2 >>>miles*1.61 42.18 The first line assigns a value to miles. But has no visible effect. The second line is an expression, so the interpreter evaluates it and displays the result. In script mode: miles=26.2 print miles*1.61 You get no output at all. In script mode, an expression, all by itself, has no visible effect. Python actually evaluates the expression, but it doesn't display the value unless you tell it to. A script usually contains a sequence of statements. If there is more than one statement, the results appear one at a time as the statements execute. For example the script print 1 x=2 print x Produces the output 1 2 The assignment statement produces no output 2.7 Order of operations Rules of Precedence determine the order of evaluation. Python follows the same rules of precedence as in math. The acronym PEMDAS helps to remember this. Parentheses Exponentiation Multiplication and Division Addition and Subtraction Operators with the same precedence are evaluated from left to right
2.8 String operations In general, you can't perform mathematical operations on strings, even if the strings look like numbers. So, the following are illegal: '2'-'1' 'eggs'/'easy' 'third'*'a charm' The operator works with strings in an unexpected way. It performs concatenation: which means joining the strings by linking them end-to-end. For example: first='throat' second='warbler' print first+second The output of this program is throatwarbler The * operator also works on strings, but it performs repetition For example: 'spam'*3 is 'spamspamspam' If one of the operands is a string, the other has to be an integer
2.9 Comments Because of how dense programs are,it is wise to add note4s to programs to explain in natural language what the program is doing. These are called comments and they start with the # sign percentage=(minute*100) #percentage of an hour Everything from the # to the end of the line is ignored-it has no effect on the execution of the program Comments are most useful when they document non-obvious features of the code It is reasonable to assume the reader can figure out what the code does; it is more useful to explain why This comment with the code is redundant and useless: v=5 #assign 5 to v This comment contains useful information that is not in the code v=5 # velocity in meters/second Good variable names can reduce the need for comments, but long names can make complex expressions hard to read, so there is a tradeoff
2.8 Debugging Three kinds of errors can occur in a program Syntax errors: "Syntax" refers to the structure of a program and the rules about that structure. Parentheses have to come in matching pairs. If one is missing, there is a syntax error If there is a syntax error anywhere in your program, Python displays an error message and quits. You will not be able to run the program. Runtime errors: Called "runtime" errors because the error does not appear until after the program has started running. These errors are also called exceptions because they usually indicate that something exceptional (and bad) has happened These errors are rare in simple programs Semantic error "Semantic" referring to meaning. If there is a semantic error in your program, it will run without getting error messages, but it will not do the right thing. It will do something else Identifying semantic errors can be tricky because it requires you to work backward by looking at the output of the program and trying to figure out what it is doing
2.9 Glossary variable: a name that refers to a  value assignment: a statement that assigns a value to a variable state diagram: a graphical representation of a set of variables and the values they refer to keyword: a reserved word that is used to parse a program; you cannot use keywords like if, def and while as variable names operand: one of the values on which an operator operates expression: a combination of variables, operators and values that represents a single result evaluate: to simplify an expression by performing the operations in order to yield a single value statement: a section of code that represents a command or action. So far, the statements we have seen are assignments and print statements execute: to run a statement and do what it says interactive mode: a way of using the Python interpreter by typing code at the prompt script mode: a way of using the Python interpreter to read code from a script and run it script: a program stored in a file order of operations: rules governing the order in which expressions involving multiple operators and operands are evaluated concatenate: to join two operands end-to-end comment: information in a program that is meant for other programmers (or anyone reading the source code) and has no effect on the execution of the program syntax error: an error in a program that makes it impossible to parse (and therefore impossible to interpret) exception: an error that is detected while the program is running semantics: the meaning of a program semantic error: an error in a program that makes it do something other than what the programmer intended
2.10 Exercises 2.1 We've seen that n=42 is legal. What about 42=n? There is a syntax error. It says it "can't assign to literal" This is because it started with a number How about x=y=1? This is legal, and same for y=x=1, it is only illegal if you start with 1 In some languages, every statement ends with a sem-colon ; What happens if you put a semi-colon at the end of a Python statement? In a math statement, it completes it. In a print statement, it give you a Syntax Error, stating "EOL while scanning string literal" What if you put a period at the end of a statement? In a math statement, it gives you a floating-point number In a print statement, it is a syntax error, saying "invalid syntax" In math notation, you can multiply x and y like this: xy.  What happens if you try that in Python? It gives you a Name Error, saying xy is not defined Exercises 2.2 The volume of a sphere with radius r is 4/3pir^3. What is the volume a sphere with radius 5? >>> r=5 >>> r^3 6 >>> r**3 125 >>> 4/3*3.14159*r**3 523.5983333333332 >>> Suppose the cover price of a book is $24.95, but book stores get a 40% discount. Shipping costs $3 for the fist copy and $.75 for each additional copy. What is the total wholesale cost for 60 copies? bookCost = 24.95 numBooks = 60.0
def cost(numBooks):    bulkBookCost = ((bookCost * 0.60) * numBooks)    shippingCost = (3.0 + (0.75 * (numBooks - 1)))    totalCost = bulkBookCost + shippingCost    print 'The total cost is: $', totalCost
cost(numBooks) If I leave my house at 6:52 am and run 1 mile at an easy pace (8:15 per mile), then 3 miles at tempo (7:12 per mile) and 1 mile at easy pace again, what time do I get home for breakfast start_time_hr = 6 + 52 / 60.0 easy_pace_hr = (8 + 15 / 60.0 ) / 60.0 tempo_pace_hr = (7 + 12 / 60.0) / 60.0 running_time_hr = 2 * easy_pace_hr + 3 * tempo_pace_hr breakfast_hr = start_time_hr + running_time_hr breakfast_min = (breakfast_hr-int(breakfast_hr))*60 breakfast_sec= (breakfast_min-int(breakfast_min))*60
print ('breakfast_hr', int(breakfast_hr) ) print ('breakfast_min', int (breakfast_min) ) print ('breakfast_sec', int (breakfast_sec) ) >>>
I still need to figure out how to take my notes and keep their formatting when I paste on to here. That will come someday, but for now, let’s keep learning!
2 notes · View notes
instapicsil1 · 7 years ago
Photo
Tumblr media
Little boy. Big Trombone. #littlemoroccan #imfive #76trombones #musicman http://ift.tt/2shk7fp
0 notes
instapicsil2 · 7 years ago
Photo
Tumblr media
Thanks to @yoga7even I almost finished 108 sun salutations tonight to welcome the summer solstice. #76trombones http://ift.tt/2rD0WwN
0 notes
instatrack · 7 years ago
Photo
Tumblr media
Thanks to @yoga7even I almost finished 108 sun salutations tonight to welcome the summer solstice. #76trombones http://ift.tt/2rD0WwN
0 notes
leavetheroots · 8 years ago
Photo
Tumblr media
The best way to destress after a very long day; daquiris and The Music Man at the Muny! #76trombones #GaryIndiana #MariantheLibrarian
1 note · View note
snakequeen-in-norway · 8 years ago
Video
instagram
#kitsapforesttheatre #kft #mountaineerplayers #themusicman #haroldhill #marionthelibrarian #76trombones (en Kitsap Forest Theater)
0 notes
walt-at-disneyland · 9 years ago
Photo
Tumblr media
Walt, "Music Man" creator Meredith Willson, and then vice-president Nixon during the grand opening parade for the Disneyland expansion of 1959. #76trombones #musicman #vintagedisneyland #nixon #walt #WaltDisney #disney #disneyland #mainstreetusa (at Disneyland)
6 notes · View notes
jamilynmanning-white · 9 years ago
Photo
Tumblr media
Come see Jamilyn as Ethel Toffelmeier along with her fellow Yalies in The Music Man in concert at the University Theatre in New Haven!
January 23 @ 2 PM and 8 PM January 24 @ 2 PM
More Info
Tickets 
0 notes
mollyisfunny · 9 years ago
Photo
Tumblr media
I'm on this @noredavis showcase! Super excited to be on this! #76trombones
0 notes
hinnebusch · 10 years ago
Video
instagram
#76trombones
0 notes
snakequeen-in-norway · 8 years ago
Video
instagram
Saw the closing performance of the Mountaineer Players' The Music Man at the Kitsap Forest Theatre today! Great theatre, great show! Next up: The Little Mermaid #kft #themusicman #76trombones #Seattle #Theatre #seattletheatre #outdoors (en Kitsap Forest Theater)
0 notes
jgracelopez · 10 years ago
Photo
Tumblr media
Oh the treasures you find at @goodwill. #76trombones #dressup
1 note · View note
pctshows · 10 years ago
Photo
Tumblr media
Opening night was amazing! Only 5 more chances to catch the show. How about tonight at 8 p.m.? Come on out and enjoy the show! #pct #pctshows #pickerington #ohio #theatre #heritage #themusicman #76trombones #tickets
0 notes