Python小程式1 20內加減法

2021-10-08 07:37:28 字數 1138 閱讀 5498

提前給兒子準備下

根據需要輸入行列數

輸出txt文件

預設列印a4紙大小

使用前修改filed引數指定檔案位置

# 隨機生成20內加減法

import random

import string

#執行前調整檔案目錄

filed =

open

("f:\pycharm\dresult\problem.txt"

,'w+'

)row =

input

('請輸入行數:'

)col =

input

('請輸入列數:'

)num1 =

int(row)

num2 =

int(col)

i =0

prob =

num = num1*num2

while i < num:

a = random.randint(1,

19)b = random.randint(1,

19)c = random.choice(

'+-'

) d =

str(a)

+c+str

(b)+

'='if c ==

'+':

if a+b >

19or d in prob:

pass

else

: i = i+

1else

:if a <= b or d in prob:

pass

else

: i = i +

1i =

1while i < num+1:

print

('%-27s'

%prob[i-1]

,end='',

file

=filed)

if i%3==

0:print

('\n'

,file

=filed)

else

:pass

i = i+

1filed.close(

)

高精度加減乘法小程式

複習高精度玩,寫了個非常直觀的加減乘程式.1 uses math 2var 3a,b ansistring 4dc,la,lb longint 5 c array 2555555.2555555 of longint 6procedure plus a,b ansistring 7var 8tt,i...

python小猿 小猿圈python學習 內建函式

python的len為什麼你可以直接用?肯定是直譯器啟動時就定義好了 每個函式的作用我都幫你標好了 abs 求絕對值 all return true if bool x is true for all values x in the iterable.if the iterable is empty...

微信小程式內前端支付

思路 1.發起支付請求時要先呼叫wx.login 介面 2.獲取到code,然後,然後呼叫後台給的支付介面 自己後台寫的介面 3.呼叫wx.requestpayment object object wx.login token token console.log data 我自己的後台給返回的資料中...