Processing of python3 that seems to be usable in paiza

# python3 Something that seems to be usable I am working on paiza. This is a memo for myself. I will continue to add it. ## Input array storage process ``` #Split input and store in array x, y,

How to set up a VPN gateway to establish a connection between Alibaba Cloud and AWS

This article provides step-by-step instructions on how to configure VPN Gateway on both ** Alibaba Cloud ** and Amazon Web Services for multi-cloud solutions. * This blog is a translation from the

Because I don't want to go out with people whose desktops are dirty

# Can you organize your desktop? ![S__43335687.jpg](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/545134/ebe211a7-55ef-fdb0-0619-8d9b860e5b24.jpeg) When I take a screenshot on my Macbo

I want to set up a GUI development environment with Python or Golang on Mac

I became unemployed again. I decided to study while looking for a job in order to improve my technical skills during the NEET period. # Studying scripting language A long time

VS Code says there is an error in cv2

# Overview I was writing a python program in Visual Studio Code. It is a story that a red line appears in the code when using the OpenCV library. ![スクリーンショット 2020-10-29 17.10.30.png](https://qiita-

Install Python Jupyter lab

# Purpose: Install Jupyter lab # phenomenon: When I installed Jupyter lab with pip and ran jupyter lab at the command prompt, I got the following error! #### **`command prompt`** ```cmd C:\Users\

Run BNO055 python sample code with I2C (Raspberry Pi 3B)

# Summary I had a chance to run BNO005 on i2C on Raspberry Pi 3B, and I stumbled, so I will leave it as a memorandum. The language used is Python. I proceeded with the development environment sett

Development and deployment of REST API in Python using Falcon Web Framework

In this article, we will develop and deploy a REST API in ** Python ** on ** PyPy ** using the ** Falcon ** web framework. * This blog is a translation from the English version. You can check the o

[Python] I made a LINE Bot that detects faces and performs mosaic processing.

I want a LINE Bot that can detect the face reflected in the background and perform mosaic processing! So I made a bot with Python that allows you to freely select the face to be mosaicked. This tim

Cloud image prediction using convLSTM

# Introduction In this article, I would like to take images as time series data and use convolutional LSTM to predict future images. I thought that convLSTM has few articles and implementation exampl

Let's visualize GraphConvModel of DeepChem

# Introduction I wanted to start Deep Learning with a compound, so I hacked the GraphConvModel of DeepChem last time and output it as text by the summary method. This time I tried to visualize it w

[Python / PyRoom Acoustics] Room acoustic simulation with Python

# What is PyRoom Acoustics? It is the strongest Python module of the acoustic system that supports all kinds of acoustic signal processing such as room acoustics, beamforming, sound source direction

[Beginner] Installing Python and running programs (Windows)

# Introduction This is the third time I've installed Python, but every time I forget the basics (!), I'll leave it as a reminder. If you write small details, it will be more difficult to understand

Sample API server to receive JSON in Golang

## Sample code #### **`main.go`** ```go package main import ( "encoding/json" "fmt" "net/http" ) //Declare structure type User struct { Name string `json:"name"` Age int

Recursively search the specified directory to see the file

Implemented using ʻos.walk () ` ```python import argparse import os def find_all_files(directory): for root, dirs, files in os.walk(directory): yield root for file in files:

Paiza Python Primer 4: List Basics

## 01 Learn what a list is A type of data structure. Handles well-known data #### **`lesson.py`** ```py Array=list Variable "one by one" Variable player_1="Brave" Variable player_2="Wizard" l

Clustering books from Aozora Bunko with Doc2Vec

I will try to find a similar work from the famous works published in [Aozora Bunko](https://www.aozora.gr.jp/access_ranking/2019_xhtml.html). I will use Doc2Vec for implementation. Note) Although t

Introduction to Discrete Event Simulation Using Python # 2

# Introduction Last time, I understood the mechanism of discrete event simulation and its most basic implementation method. Specifically, it keeps an event calendar (a list of events arranged in the

"Deep Learning from scratch" Self-study memo (No. 14) Run the program in Chapter 4 on Google Colaboratory

While reading "Deep Learning from scratch" (written by Yasuki Saito, published by O'Reilly Japan), I will make a note of the sites I referred to. [Part 13](https://qiita.com/slow_learner/items/ccf0a3

[Introduction to Reinforcement Learning] Reinforcement learning to try moving for the time being

# Introduction I only had an image of reinforcement learning, so I actually tried it for the time being. This time, we are running a reinforcement learning algorithm on a tool called OpenAI Gym.

[Automation with python! ] Part 2: File operation

# At the beginning Hello, it is delicious. This article is the second implementation commentary article of [Because I don't want to deal with people with dirty desktops](https://qiita.com/pn8128/ite

Judge whether it is a prime number [Python]

In this article A program that determines whether the input value (n) is a prime number or not. I will write. ## What is a prime number? A prime number is a natural number greater than 1 that ha

Scraping the list of Go To EAT member stores in Niigata prefecture and converting it to CSV

Was released last time Convert PDF of list of Go To EAT member stores in Niigata prefecture to CSV https://qiita.com/barobaro/items/74fb5bdedbf1ae7267a0 Can't find PDF, so scrape to create a list

Simultaneously input specific data to a specific sheet in many excels

### problem Have you ever updated the date to the same place in various EXCEL? The problem I want to solve this time is: I want to input the same sheet, the same place, and the same data in various

Convert multiple proto files at once with python

I'm a little addicted to it, so I'll write it down as a memorandum. # Thing you want to do --I want to properly convert multiple protos that have dependencies --I don't know what arguments to pass

A story that I was addicted to when I made SFTP communication with python

# Overview Be careful because some overseas libraries have an appropriate idea of encoding. # Trouble content For business, I needed to touch sftp with python, so I used paramiko and tried to downl

How to build an application from the cloud using the Django web framework

This article will show you how to build applications from the cloud using the ** Django web framework ** to help web developers address the challenges they face today. * This blog is a translation

Understanding and implementing Style GAN

I had the opportunity to learn GAN and wanted to know new technologies anyway, so I decided to understand Style GAN at the implementation level. I was frustrated by the version problem of TensorFlow

Build AI / machine learning environment with Python

■ PC environment CPU:i7 Main memory: 16GB GPU:NVIDIA 「Tesla80」 ■OS WindowsServer2019/64bit ■ Setup tool ● GPU environment (Cuda) Driver "Tesla K80" CUDA toolkit CUDA10.0 [cuda_10.0.130_win10_ne

Flatten an irregular 2D standard list in Python

# Thing you want to do ``` [0, 0, [0, 0], 0, [0]] ``` I want to flatten a standard list that contains list irregularly like the following ``` [0, 0, 0, 0, 0, 0] ``` # manner You could do this by