This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Java Loop Challenge 2 | |
// By @TokyoEdtech | |
class JavaLoopChallenge2 | |
{ | |
public static void main(String[] args) | |
{ | |
System.out.println("\n\n1."); | |
// Create a loop to print the numbers 1 to 10 inclusive | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Java Loop Challenge 1 | |
// By @TokyoEdtech | |
class JavaLoopChallenge1 | |
{ | |
public static void main(String[] args) | |
{ | |
String text = ""; | |
String letter = ""; | |
System.out.println("\n\n1."); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Finding Patterns | |
import os | |
os.system("clear") | |
# 1 | |
print(1) | |
print(2) | |
print(3) | |
print(4) | |
print(5) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://christianthompson.com | |
# Twitter: @tokyoedtech | |
# Welcome to my "office hours" for October 10, 2019. | |
# If you have any Python questions - ask in chat | |
# Please provide any code via pastebin.com link | |
# OS: Ubuntu Linux 19.04 | |
# Programming Editor: Geany |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Asteroids by @TokyoEdTech / Written in Python 3.5 | |
#Part 0: Finished Demo | |
import os | |
import random | |
import time | |
import math | |
#Import the Turtle module | |
import turtle |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 2048 in Python 3 for Beginners (Alpha Version) | |
# By @TokyoEdTech | |
import turtle | |
import random | |
# Set up the screen | |
wn = turtle.Screen() | |
wn.title("2048 by @TokyoEdTech") | |
wn.bgcolor("black") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Simple Snake Game in Python 3 for Beginners | |
# By @TokyoEdTech | |
import turtle | |
import time | |
import random | |
delay = 0.1 | |
# Score |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Inspirational Sayings | |
# By @TokyoEdTech YouTube Channel: https://www.youtube.com/channel/UC2vm-0XX5RkWCXWwtBZGOXg | |
import tkinter | |
import random | |
root = tkinter.Tk() | |
root.title("Inspiration") | |
root.geometry("225x75") | |
lbl_inspiration = tkinter.Label(root, wraplength=200) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
def machine_print(text, delay = 0.1): | |
for letter in text: | |
print(letter, end="", flush=True) | |
time.sleep(delay) | |
print() | |
machine_print("Greetings, Professor Falken. Shall we play a game?") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Coding Challenge | |
# Reddit: https://www.reddit.com/r/learnprogramming/comments/847ckg/i_failed_a_coding_interview_but_then_afterwards/ | |
# The problem was given a file of sentences, one sentence per line, | |
# implement a function that takes in 2 words, prob(a, b), | |
# and outputs the probability of a occurring given that the | |
# preceding word is b. | |
# Some test data already in a list with punctuation removed | |
sentences = ["Please buy me a drink", | |
"Please buy me a drink Bob", |
NewerOlder