or tag

453 questions


2 answers
94 views
0
Is it possible to put various conditions in the form of a list in the if conditional statement?

def chat(): print('start chatbot') while True: inp = input(user :) ifinf == End: print ('Exit chatbot service') break data = Hello or Hi if data: print(How may I help you?) else: print('Will ...


2 answers
47 views
0
User folder name in Korean

The name of my user folder is written in KoreanIf the folder name is Korean in Android studio or some development kits, I heard that it's uncomfortable to useWould it be better to reinstall windows an...

2 years ago

1 answers
112 views
0
Why should the parent class constructor (in relation to inheritance and constructor) be performed first! I wonder if my guess is correct.

Ian Media is a student who is studying with a book called 'The first java programming'. I was studying inheritance and constructor, but the book said that in order for an explicit constructor or impli...


1 answers
56 views
0
(Correction) Python HTTP Error: Forbidden Question!

I want to download it from the same address. There are too many to do manually, so I thought it would be simple, so I coded it. It says HTTPError: Forbidden.Without %06 just 1, 2, 3, 4... It worked we...

2 years ago

1 answers
80 views
0
I made an app with python py2app, but error message

os x YosemiteThe virtual environment in pyenv is python 3.5.1Install py2app with pip # -*- coding: utf-8 -*-from setuptools import setup# Information such as name, description, version, etc. is the sa...

2 years ago

1 answers
153 views
0
Which one should I use to sort vectors in descending order?

Please explain which one to use when sorting vectors in descending order, which one do you prefer?std::sort(numbers.begin(), numbers.end(), std::greater<int>());std::sort(numbers.rbegin(), numbe...


1 answers
89 views
0
Django in Windows

The following error appears when running the runserver with the long-range setting set.UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb9 in position 5: invalid start byteI know it's an encoding...


1 answers
81 views
0
Android sqlite int sync error

final public String CREATE_FAVORITE_SONG_TABLE_QUERY = CREATE TABLE + FAVORITE_SONG_TABLE_NAME + ( + ID INTEGER PRIMARY KEY, + favorite_id int(10), + sound_res char(30), + sound_name char(3...


1 answers
77 views
0
Question about Python for door.

It's a question from Python about For MoonImplemented as follows n = 10for i in range(0, n-1): // Now we understand that n is 9 for j in range(i + 1, n): // So n here is going to be the 10 declared a...

for
2 years ago

1 answers
90 views
0
c++) Problems that are automatically deleted and not returned when returning an object in the operator function

I'm writing a linked list. I wrote +=, = operator and checked that it works properly.After that, write the + operator. unvlist unvlist::operator+(const unvlist &ul){ unvlist *list = new unvlist();...

2 years ago
« - 20 - »

© 2024 OneMinuteCode. All rights reserved.