Questions and Answers
Problems and Solutions
Quotes help make search much faster. Example: "Practice Makes Perfect"
Monday, October 28, 2013
#Python #Codecademy File Input/Output Try It Yourself
# Sample solution
with open("text.txt", "w") as my_file:
my_file.write("Kumbaya Sharkey!")
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
This is an example of
scrolling text
using Javascript.
Popular Posts
What hotkeys can you use in a Python shell to repeat the previous command you typed?
Answer: Alt - p p stands for previous. If you keep pressing Alt - p, you will continue cycling back through commands you typed before. I...
Codecademy: "Function and Control Flow"
//sample solution def isEven(x): if(x % 2 == 0): return "yep" else: return "nope"
Make a Website: HTML Wrap with a div
<!-- Sample solution to index.html --> <!DOCTYPE html> <html> <body> <div class="nav"> ...
Codeschool Sample Solution Selecting Direct Children
$("#tours > li")
Codecademy: "Unless"
#sample solution hungry = false unless hungry puts "I'm writing Ruby programs!" else puts "Time to eat!...
Codecademy: Codeyear Nesting conditional statements
//sample solution var yourName = "Pam"; var gender = "female"; var result; //Line 10 starts an if statement //Ne...
Codecademy Sample Solution: In Case of Many Options
puts "What's your favorite language?" language = gets.chomp case language when "Ruby" then puts "Ruby is ...
Codecademy: Codeyear Setting values using a ternary operator
//sample solution var food = prompt("What food would you suggest?"); /*if (food === "taco") { foodType = "Mex...
Codecademy: Structure the Webpage
<!--sample solution--> <html> <head> <title>Week 13 Project</title> </head> ...
LearnStreet Sample Solution to Lesson 6 Exercise 11
# your code here def check_palindrome(str) rev = str.reverse rev.eql?(str) end check_palindrome("civic")
No comments:
Post a Comment