1. Where is the bash program located on your system?
A: In /bin/bash
2. Use the
--versioncommand to find out which version you are running.
| from flask_sqlalchemy import SQLAlchemy | |
| from flask import Flask | |
| app = Flask(__name__) | |
| app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///drinks.db' | |
| db = SQLAlchemy(app) | |
| class DrinkIngredient(db.Model): | |
| id = db.Column(db.Integer, primary_key=True) |
| package simpledemoga; | |
| import java.util.Random; | |
| public class SimpleDemoGA { | |
| Population population = new Population(); | |
| Individual fittest; |