This file contains hidden or 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
first_name = str(input("What is your first name?: ")) | |
middle_name = str(input("What is your middle name?: ")) | |
last_name = str(input("What is your last name?: ")) | |
good = "Oh that's wonderful!" | |
bad = "Oh I'm sorry to hear :(" | |
idk = "Well, at least you're not upset." | |
first_name = first_name.capitalize() | |
middle_name = middle_name.capitalize() |
This file contains hidden or 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
//Made By: @GrunclePug#7015 |
This file contains hidden or 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
//Discord Bot By: @GrunclePug#7015 |
This file contains hidden or 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
#Discord Bot by GrunclePug#7015 | |
#Libraries | |
import discord | |
from discord.ext import commands | |
import asyncio | |
import platform | |
#Bot setup | |
version = "Gruncle Word Filteration v0.1" |
This file contains hidden or 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
/** | |
* Class that models a Person. | |
* | |
* @author Chad | |
* @version 1.0 | |
*/ | |
public class Person | |
{ | |
String firstName; | |
String lastName; |
This file contains hidden or 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
/** | |
* Class that models a Person. | |
* | |
* @author Chad | |
* @version 1.1 | |
*/ | |
public class Person | |
{ | |
private int age; | |
private double height; // cm |
This file contains hidden or 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
/** | |
* Class to model a Person | |
* | |
* Lab 3 | |
* | |
* @author Chad | |
* @version 1.2 | |
*/ | |
public class Person | |
{ |
This file contains hidden or 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
/** | |
* Class to model a Person | |
* | |
* Lab 4 | |
* | |
* @author Chad | |
* @version 1.3 | |
*/ | |
public class Person | |
{ |
This file contains hidden or 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
/** | |
* Class to model a Vehicle | |
* | |
* Assignment 1 | |
* | |
* @author Chad | |
* @version 1.0 | |
*/ | |
public class Vehicle | |
{ |
This file contains hidden or 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
/** | |
* Information for customers renting a musical instrument. | |
* | |
* @author Chad | |
* @version 1.0 | |
*/ | |
public class Customer | |
{ | |
private String firstName; | |
private String lastName; |
OlderNewer