lzaiz24 发表于 2023-4-19 13:43:05

like this

歌者文明清理员 发表于 2023-4-9 10:27:59

本帖最后由 歌者文明清理员 于 2023-5-10 22:33 编辑

[b=1
print()]
test

[ a=1
b=1 ]
okok

加官晋爵 发表于 2023-2-27 16:30:23

print(1+2)

唐影F 发表于 2023-2-3 17:05:44


i = input('请输入您的名字:')
if i == '小甲鱼':
   print('你好,老污龟!')
else:
   print('欢迎光临!!')

唐影F 发表于 2023-2-3 17:04:56

[i = input('请输入您的名字:')
if i == '小甲鱼':
   print('你好,老污龟!')
else:
   print('欢迎光临!!')]

LeKca 发表于 2022-12-16 20:09:02

#iinclude <stdio.h>

int main(void)
{
    printf("hello\n");
   
    return 0;
}

茶几和板凳 发表于 2022-12-16 18:10:21

>>> print(1+2)
3

无敌卡布达战士 发表于 2022-11-15 09:24:29

print(1+2)

zsy0226 发表于 2022-11-6 12:22:58

输出当前时间(搞事情用Qt6)
import time
from PyQt6.QtCore import *
a=QDate.currentDate().toString(Qt.DateFormat.ISODate)
try:
    print('今天是{}年{}月{}日。'.format(a,a,a))
    print('现在是:{}(按Ctrl+C退出)'.format(QTime.currentTime().toString(Qt.DateFormat.ISODate)))
    while True:
      time.sleep(0.99)
      print('现在是:{}'.format(QTime.currentTime().toString(Qt.DateFormat.ISODate)))

except KeyboardInterrupt:
    print('已退出')
except (ModuleNotFoundError,ImportError):
    import pip
    pip.main(['install','PyQt6'])

zsy0226 发表于 2022-11-6 12:12:47

>>>print(1+2)
3
>>>

zsy0226 发表于 2022-11-6 12:11:43

1

yuyufish 发表于 2022-11-5 16:09:25

再试试
for i in range(11):
    print(i)

yuyufish 发表于 2022-11-5 16:08:11

print(1+2)

tommyyu 发表于 2022-10-25 14:11:52

{:10_256:}

13978074582 发表于 2022-10-24 10:39:07

任督二脉未开,请助我一臂之力。继续为这个小程序在添加一项功能。。
代码有各路大神的影子,以及本菜鸟的影子
import random
def lise1():
    '函数功能,生成随机数字列表,通过修改len,以及切片方式,获取随机列表的长度'
    lise2 = []
    while True:
      i = random.randint(1,100)
      if i not in lise2:
            lise2.append(i)
            if len(lise2) == 68:
                return lise2
                break

            
xxcs = 500
lise3 =
#过滤列表
while xxcs:
    lise4 = lise1()
    for x in set(lise3):
      while x in lise4[:] : lise4.remove(x)
    lise5 = lise4
    lise5.sort()
    print(lise5)

    xxcs = xxcs - 1

这个程序打印500次随机加切片分割的一个数字列表。。。
添加的功能是:每次打印前,都要跟已打印过的所有列表进行对比,列表内相同数不能高于(可设置1-10之间),假设相同数是1,那一定打印不出500次。如何在不报错的情况下,打印完1相同的所有组合。
优秀的程序员 = 清晰的思路(好像我有) + 方法(正在学习) + 简化(疯狂学习)
不破坏原代码的情况下追加代码。。
还有2个小请求。
第1,程序完善后,请大神用递归的方式编写一个一样效果的程序。。
第2,程序完善后,请大神用迭代的方式编写一个一样效果的程序。。
第3,这3个程序以后就是我的参照程序了,,任督二脉能不能打开,就看我研究这3个程序的程度了
第4,感谢各位大神的帮助

加来列夫马斯克 发表于 2022-10-21 12:43:54

hello world

Tomknight 发表于 2022-10-21 12:00:08

print("Hello World!")
再试试

Tomknight 发表于 2022-10-21 11:10:07


print("Hello World!")

我试试

无理想的闲鱼 发表于 2022-10-14 10:35:43

是啥样子的呢
让我来康康

Freedy_S 发表于 2022-10-13 15:43:07

这样的!
页: 1 2 3 4 5 [6] 7 8 9 10 11 12 13 14 15
查看完整版本: 如何在帖子中插入图片和使用代码段