All Questions

19771 questions


1 answers
363 views
0
Turtle Game Add Life

import turtle as timport random# Create Screen Objectscreen = t.Screen()# Specify screen background colorscreen.bgcolor(lightgreen)# drawing a fencemypen = t.Turtle()mypen.penup()mypen.setposition(-30...

1 years ago

1 answers
403 views
0
Is there a way to receive the value of the form without using cgi.FieldStorage() in Python?

We are passing (page transition) values in Python's CGI.We are currently retrieving the value in cgi.FieldStorage().However, since Python 3.11, cgi has been deprecated, and since 3.13, it has been dep...

1 years ago

1 answers
451 views
0
Is it possible to use a combination of Apache 2.4.51 and PHP 5.4 or less?

Apache 2.2.17+PHP 5.2.1+CakePHP 1.1.14, created DB-related webs a long time ago.Due to a vulnerability in Apache, we would like to upgrade to Apache 2.4.51.I've seen how Apache 2.4.51 works with PHP 5...

1 years ago

1 answers
391 views
0
I want to use external web APIs with reference limitations from the development environment.

Assume the web service in the development environment is running on dockerIn /etc/hosts127.0.0.1 test.localWrite on chrome.http://test.local:3000DNS error occurs even if I try to insert it into the di...

1 years ago

1 answers
326 views
0
I'd like to create a pair of each item based on the groups listed in the Panda's Data Frame column

The data frame consists of id and title as shown below.I want to pair title items that belong to the same id. Initial Data Frameid     title1     'A'1     'B'1     'C'2     'D'2     'E'3     'F'3     ...

1 years ago

1 answers
497 views
0
Inquire how to design tables when creating dynamic bulletin boards

You are about to implement dynamically generated bulletin boards.I'm asking you this question because I'm curious about how other people implement it.Method 1: Push into one table.==> This method i...

1 years ago

1 answers
394 views
0
Questions about Python class inheritance!

In that code, the Professioner and Student classes are sister classes that belong to the School parent class.I wonder how I can modify the Edison of the Professor class to come out when Jane.matchProf...

1 years ago

1 answers
430 views
0
The tkinter messagebox appears first and then the main dialog does not complete successfully.

This is a self-resolved content, but I will post it for sharing.Before starting the main GUI application, you may first check the startup conditions, such as checking configuration files, and use the ...

1 years ago

1 answers
340 views
0
Information About Local Communication with A-painter

I would like to draw with various elements because it can be expanded using VR paint software called A-painter, and since it is possible to develop locally, I am trying to draw on local communication....


1 answers
349 views
0
PROGRAM FOR SAVING INPUT CHARACTER STRING IN FILE

Instead of using the scanner class in java, we create a program that reads the string entered line by line until a blank character is entered and writes it to a file if a blank character is entered.Ex...

1 years ago
« - 65 - »

© 2024 OneMinuteCode. All rights reserved.