«python» 태그된 질문

이 과제는 파이썬 언어와 관련이 있습니다. 특정 언어로 답변해야하는 문제는 일반적으로 권장하지 않습니다.

19
죄수의 트렐 레마
과제 상태 : 열기 내가 봇을 잃어 버렸다면 의견을 말하거나 PR을 열거 나 그렇지 않으면 나에게 소리 지른다. 죄수의 딜레마 ... 세 가지 선택. 미쳤어? 여기에 지불 행렬이 있습니다. 왼쪽의 플레이어 A, 상단의 B A,B| C | N | D ---|---|---|--- C |3,3|4,1|0,5 N |1,4|2,2|3,2 D |5,0|2,3|1,1 지불 매트릭스는 두 …

2
이 목록이 동일합니까?
아시다시피 파이썬에는 목록이 있습니다. 당신이 알지 못할 수도 있듯이 이러한 목록은 스스로를 포함 할 수 있습니다. a = [] a.append(a) 파이썬 2 파이썬 3 이들은 시원하고 당신이 그들과 함께 할 수있는 재미있는 것들이 많이 있지만 비교할 수는 없습니다. a = [] a.append(a) b = [] b.append(b) a == b 파이썬 …

5
더 단단한 물체 또는 부드러운 물체가 있습니까
What-If 책의 개봉에서 영감을 얻었습니다. 입력은 #내부에 객체가있는 문자열, 문자열 목록 등의 공백 사각형입니다 . ######## # # ######## ### #### ### #### ### 개체는 항상 교차하지 않고 비 터치 사각형입니다. 부드러운 객체는 #중간에의으로 채워지지 않고 경계 일 뿐인 객체로 정의되며 , 단단한 객체는 채워진 객체입니다. 폭이나 높이를 가진 물체 …
19 code-golf  ascii-art  counting  code-golf  number  grid  decision-problem  chess  code-golf  grid  graph-theory  chess  code-golf  math  geometry  code-golf  arithmetic  roman-numerals  fastest-code  code-golf  math  geometry  code-golf  string  cryptography  code-golf  number  sequence  decision-problem  code-golf  string  parsing  c  code-golf  sorting  integer  code-golf  number  sequence  rational-numbers  graphical-output  atomic-code-golf  assembly  box-256  code-golf  geometry  tips  python  code-golf  number  sequence  arithmetic  number-theory  code-golf  ascii-art  kolmogorov-complexity  geometry  code-golf  graphical-output  code-golf  math  code-golf  grid  cellular-automata  game-of-life  code-golf  string  subsequence  code-golf  arithmetic  rational-numbers  code-golf  tips  dc  code-golf  ascii-art  kolmogorov-complexity  date  code-golf  string  primes  code-golf  string  natural-language  conversion  code-golf  sequence  code-golf  number-theory  primes  base-conversion  code-golf  math  primes  base-conversion  code-golf  ascii-art  fractal  code-golf  matrix  code-golf  math  tips  geometry  python  string  code-challenge  keyboard  code-golf  graphical-output  code-golf  string  code-golf  number  sequence  cops-and-robbers  number  sequence  cops-and-robbers 

3
파이썬에서 두 변수 중 하나를 할당하는 더 짧은 방법이 있습니까?
이것은 파이썬 에서 골프를하기위한 팁 질문입니다 . 파이썬에서 수행 한 여러 골프에서 고정 값은 부울에 의해 선택된 두 변수 중 하나에 할당됩니다. 선택한 변수는 주어진 값으로 덮어 쓰고 다른 변수는 변경되지 않습니다. 17 자 if b:y=z else:x=z 조건부 값을 할당하는 것은 쉽지만 조건부 변수를 할당하는 것은 어려워 보입니다. 내가 놓친 …
19 code-golf  tips  python 

24
죄수의 딜레마 v.3-페트리 딜레마
미친 과학자가 새로운 종류의 박테리아를 만들었습니다! 그는 이름을 Noblus Gentlemanus 로 결정했습니다.행동을 관찰 한 후. 그러나 그의 박테리아는 음식이 부족하여 다른 박테리아의 시체를 수확하여 충분한 양의 음식을 만들어 자신의 사본을 만들 수있게함으로써 전쟁을 선포했습니다. 이 박테리아에는 여러 가지 아종이 있으며, 이들은 가장 좋아하는 게임 인 Prisoner 's Dilemma를 플레이하는 데 …

3
파이썬에서 사용자 입력을 얻는 더 짧은 방법이 있습니까?
이것은 도전이 아닙니다. 파이썬 (2 또는 3)에서 19 바이트 미만의 두 개의 개별 변수에 사용자 입력을 얻는 것이 가능한지 궁금합니다. 이것들은 내가 얻을 수있는 가장 짧은 것입니다 : a,b=input(),input() a=input();b=input() (newline replaced with semicolon for readability) i=input;a,b=i(),i() 이 작업을 수행하는 더 짧은 방법이 있습니까?
17 code-golf  tips  python 

10
오름차순 행렬
"오름차순 행렬"은 정수 (0 포함)의 무한 행렬로, 모든 요소가 해당 행과 열에서 이전에 사용되지 않은 가장 작은 사용 가능한 요소입니다. | 1 2 3 4 5 6 ... --+---------------- 1 | 0 1 2 3 4 5 ... 2 | 1 0 3 2 5 4 ... 3 | 2 …
17 code-golf  math  matrix  programming-puzzle  code-golf  music  code-challenge  programming-puzzle  code-golf  fastest-code  code-golf  number  game  code-golf  combinatorics  code-golf  math  sequence  restricted-complexity  code-golf  number  random  code-golf  array-manipulation  code-golf  math  matrix  code-golf  number  sequence  counting  code-golf  math  number  sequence  popularity-contest  number  sequence  code-golf  music  code-golf  number  code-golf  ascii-art  arithmetic  code-golf  code-golf  number  code-golf  code-challenge  array-manipulation  code-golf  grammars  code-challenge  polyglot  code-golf  game  math  python  programming-puzzle  code-challenge  king-of-the-hill  code-challenge  fastest-code  primes  number-theory  number-theory  primes  fastest-code  factoring  popularity-contest  compile-time  code-golf  math 

2
한 줄에 최대 PEP8 위반 수
당신의 임무는 많은 pep8 위반 이있는 줄을 포함하는 파일을 작성하는 것 입니다. 규칙: 우리는 pep8 버전 1.5.7과 기본 설정을 사용합니다. 다른 명령 행 옵션으로 pep8을 호출하거나 사용자 정의 rc 파일을 사용할 수 없습니다. 최대 줄 길이는 120 자입니다. 물론 E501을 위반할 수는 있지만 점수가 계산되는 줄은 <= 120 자 여야합니다. …

3
Python Import로 골프하기
파이썬에서 인라인, 단일 사용 가져 오기를 사용하는 것이 언제 유익합니까? 예를 들면 다음과 같습니다. __import__("x").doSomething() 위가 아래보다 짧습니까? import x x.doSomething() 또는 from x import* doSomething()
16 code-golf  tips  python 

10
충돌 (즉, 인터프리터가 작동을 멈추고 강제로 닫힘) Python [닫힘]
닫은. 이 질문은 주제에 맞지 않습니다 . 현재 답변을받지 않습니다. 이 질문을 개선하고 싶습니까? Code Golf Stack Exchange에 대한 주제가 되도록 질문을 업데이트하십시오 . 휴일 삼년 전에 . 파이썬이 가장 창의적인 코드로 치명적인 충돌을 일으킬 수있는 사람을보고 싶습니다. 즉, 프로그램이 실행되면 Windows와 같이 "IDLE이 작동을 멈췄습니다"와 같은 메시지가 나타나거나 Linux가 …


7
진동 평등
on [l, r]에서 시작하여 시간 단위당 하나의 단위 속도로 두 개의 정수 포인트 사이에서 진동하는 객체가 있습니다. 당신은 가정 할 수 있습니다 . 예를 들어 객체가 진동 하면 다음과 같은 결과가 나타납니다.lt=0l < r[3, 6] t=0 -> 3 t=1 -> 4 t=2 -> 5 t=3 -> 6 t=4 -> 5 …
15 code-golf  array-manipulation  decision-problem  code-golf  math  number-theory  palindrome  integer-partitions  code-golf  math  decision-problem  geometry  code-golf  string  random  code-golf  ascii-art  code-golf  kolmogorov-complexity  primes  code-golf  kolmogorov-complexity  code-golf  graphical-output  code-golf  number-theory  primes  integer  factoring  code-golf  sequence  array-manipulation  integer  code-golf  array-manipulation  matrix  code-golf  sequence  binary  code-golf  game  cellular-automata  game-of-life  binary-matrix  code-golf  string  ascii-art  code-golf  random  generation  logic  code-golf  string  code-golf  code-golf  sequence  array-manipulation  random  apl  code-golf  code-golf  sequence  primes  code-golf  math  sequence  integer  code-golf  number  arithmetic  array-manipulation  decision-problem  code-golf  ascii-art  number  code-golf  restricted-source  quine  code-golf  chess  board-game  code-golf  math  sequence  code-golf  number  sequence  kolmogorov-complexity  code-golf  number  sequence  arithmetic  code-golf  math  number  alphabet  code-golf  ascii-art  classification  statistics  apl  code-golf  array-manipulation  matrix  code-golf  string  kolmogorov-complexity  code-golf  sequence  binary  base-conversion  binary-matrix  code-golf  string  classification  code-golf  tips  python  code-golf  combinatorics  binary  subsequence  restricted-time  code-golf  number  number-theory  code-golf  math  number  complex-numbers  code-golf  string  code-golf  string  code-golf  string  random  game  king-of-the-hill  python  code-golf  number  sequence  code-golf  number  sequence  code-golf  code-golf  math  number  array-manipulation  code-golf  array-manipulation  decision-problem  code-golf  string  code-golf  sequence  integer 

12
천상의 관료제 KoTH
중국 제국에서는 사회의 계급이 출생이나 부로 결정되는 것이 아니라 제국 시험에서 뛰어나게하는 사람의 능력에 의해 결정되었습니다. 하늘의 신성한 통치자 인 제이드 황제는 자신의 모든 과목을 검토하여 자신의 가치를 결정하고 다음에 중국의 통치권을 부여 할 신권 명령을 요구했습니다. 관료주의의 규칙 : 신성한 관료주의는 0부터 시작하여 음이 아닌 정수 값 순위로 구성됩니다. …

1
축소기를 작성합시다
배경 축소 기는 일반적으로 웹 브라우저에 JavaScript를 제공 할 때 사용됩니다. 일반적으로 전송해야하는 바이트 수를 줄이는 데 사용됩니다. 대역폭 절약은 명백한 이유로 유용합니다. 어떤 사람들은 의도적으로 코드를 읽기 어렵게 만드는 난독 화를 사용합니다. 우리는 파이썬 2를 축소 할 것입니다 나는 축소 경험에 JavaScript 또는 Python을 사용할지 여부에 대해 토론하고 있었고 …

1
파이썬 조언 : 내성적 인 함수 호출의 이식성
파이썬에서는 dir모든 객체 에서 함수를 사용하여 인스턴스 함수의 이름 목록을 얻을 수 있습니다. >>> dir('abc') ['__add__', '__class__', '__contains__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__getslice__', '__gt__', '__hash__', '__init__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__','__sizeof__', '__str__', '__subclasshook__', '_formatter_field_name_split', '_formatter_parser', 'capitalize', 'center', 'count', …
14 code-golf  tips  python 

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.