2024-01-01から1年間の記事一覧

【Rust】英単語帳プログラム

コンソールで動作します データは↓にあります drive.google.com Cargo.toml [dependencies] rand = "0.8"main.rs use std::fs::File; use std::io::{self,Write,BufRead}; use std::path::Path; use rand::seq::SliceRandom; use rand::thread_rng; fn main(…

【Python】宇宙の星の中を進むように見えるプログラム

ChatGPTを利用したものを修正して作成しました turtleモジュールを使用しています 未インストールの場合はpipなどでインストールする必要があります SpaceInStarsimport turtle import random import time import math # 画面の設定 win = turtle.Screen() w…