質問編集履歴

5

補足

2021/08/18 09:05

投稿

akisan55
akisan55

スコア49

test CHANGED
File without changes
test CHANGED
@@ -32,6 +32,10 @@
32
32
 
33
33
  括弧はサポートしています。
34
34
 
35
+ ###補足
36
+
37
+ 標準ライブラリ以外の外部ライブラリは使いたくありません。
38
+
35
39
  ###
36
40
 
37
41
  詳しい方に教えて頂けたら助かります。

4

書式の改善

2021/08/18 09:05

投稿

akisan55
akisan55

スコア49

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  ``"3+4==a + b and 5+6==10+1 or c+3==1+6" -> "5+6==10+1 or c+3==1+6"``
12
12
 
13
- ``"3==3 and (3+4==2+5 and 3== 3) or 'or'=='or'" -> (3+4==2+5 and 3== 3) or 'or'=='or'``
13
+ ``"3==3 and (3+4==2+5 and 3== 3 or 5==d) or 'or'=='or'" -> (3+4==2+5 and 3== 3 or 5==d) or 'or'=='or'``
14
14
 
15
15
  ###試したこと
16
16
 

3

Pythonと同じ文法であることの提示と書式の改善

2021/08/18 09:02

投稿

akisan55
akisan55

スコア49

test CHANGED
File without changes
test CHANGED
@@ -4,13 +4,13 @@
4
4
 
5
5
  ``"3+4==2+5 and 5+6==10+1 or 4+3==1+6" -> "5+6==10+1 or 4+3==1+6"``
6
6
 
7
- ``"3==3 and (3+4==2+5 and 3== 3) or 'or'=='or'" -> (3+4==2+5 and 3== 3) or 'or'=='or'``
7
+ ``"3+4==2+5 and 'or'=='and' or 'or'=='or'" -> 'or'=='and' or 'or'=='or'``
8
8
 
9
9
  (追加)
10
10
 
11
11
  ``"3+4==a + b and 5+6==10+1 or c+3==1+6" -> "5+6==10+1 or c+3==1+6"``
12
12
 
13
- ``"3+4==2+5 and 'or'=='and' or 'or'=='or'" -> 'or'=='and' or 'or'=='or'``
13
+ ``"3==3 and (3+4==2+5 and 3== 3) or 'or'=='or'" -> (3+4==2+5 and 3== 3) or 'or'=='or'``
14
14
 
15
15
  ###試したこと
16
16
 
@@ -22,11 +22,13 @@
22
22
 
23
23
  ###文法
24
24
 
25
- andorの前後の空白省略不可
25
+ ※Pythonと同じ文法
26
26
 
27
- 変数は有り
27
+ andとorの前後の空白省略不可、
28
28
 
29
+ 変数は有り、
30
+
29
- 空白はどこに入れても良い
31
+ 空白はどこに入れても良い
30
32
 
31
33
  括弧はサポートしています。
32
34
 

2

文法の追加

2021/08/18 09:01

投稿

akisan55
akisan55

スコア49

test CHANGED
File without changes
test CHANGED
@@ -3,6 +3,12 @@
3
3
  ``"2==1 or 3==3 and 4==2 -> "2==1 or 3==3"``
4
4
 
5
5
  ``"3+4==2+5 and 5+6==10+1 or 4+3==1+6" -> "5+6==10+1 or 4+3==1+6"``
6
+
7
+ ``"3==3 and (3+4==2+5 and 3== 3) or 'or'=='or'" -> (3+4==2+5 and 3== 3) or 'or'=='or'``
8
+
9
+ (追加)
10
+
11
+ ``"3+4==a + b and 5+6==10+1 or c+3==1+6" -> "5+6==10+1 or c+3==1+6"``
6
12
 
7
13
  ``"3+4==2+5 and 'or'=='and' or 'or'=='or'" -> 'or'=='and' or 'or'=='or'``
8
14
 
@@ -22,6 +28,8 @@
22
28
 
23
29
  空白はどこに入れても良い。
24
30
 
31
+ 括弧はサポートしています。
32
+
25
33
  ###
26
34
 
27
35
  詳しい方に教えて頂けたら助かります。

1

文法の追加

2021/08/18 08:59

投稿

akisan55
akisan55

スコア49

test CHANGED
File without changes
test CHANGED
@@ -14,6 +14,14 @@
14
14
 
15
15
   全て選ばれてしまう。
16
16
 
17
+ ###文法
18
+
19
+ andとorの前後の空白省略不可
20
+
21
+ 変数は有り
22
+
23
+ 空白はどこに入れても良い。
24
+
17
25
  ###
18
26
 
19
27
  詳しい方に教えて頂けたら助かります。