public static void main(String[] args) {
System.println.out("hello world")
}
阅读全部
|
wumh
贴于 2023年10月31日 11:43
hide
bbsi
public static void main(String[] args) {
System.out.println("hello world");
}
阅读全部
|
liul
贴于 2023年10月31日 11:42
hide
bbsi
public static void main(String[] args) {
System.out.println("hello world");
}
阅读全部
|
liul
贴于 2023年10月31日 11:42
hide
bbsi
Module Program
Sub Main(args As String())
Console.WriteLine(2+3)
End Sub End Module
阅读全部
|
zxczxczxc123
贴于 2023年10月25日 15:37
hide
bbsi
Module Program
Sub Main(args As String())
Console.WriteLine(2+3)
End Sub End Module
阅读全部
|
zxczxczxc123
贴于 2023年10月25日 15:37
hide
bbsi
# python3 ./src/import-brokerinfo.py
import pandas as pd
import requests
import math
def read_df(file_name, sheet_name):
brokerinfo_df = pd.read_excel(file_name, sheet_name=sheet_name)
return brokerinfo_df
if __name__ == "__main__":
brokerinfo_df = read_df("./files/下游公司名称-20231022.xlsx","下游公司名称")
......................
阅读全部
|
gaojianglei
贴于 2023年10月24日 15:10
hide
bbsi
a=input()
if "0"<=a<="9":
mg="number"
if "a"<=mg<="z" or "A"<=mg<="Z":
mg="character"
else:
mg="other"
print(mg)
阅读全部
|
zunr
贴于 2023年10月23日 14:24
hide
bbsi