import os
txt = 1
mmyyyy = ' -08-2020 '
for f in range (1,1001):
for i in range (1,11) :
if not os.path.exists('C:\\Users\\Hayavadan\\OneDrive\\Python\\' + str(i) + mmyyyy):
os.mkdir ("C:\\Users\\Hayavadan\OneDrive\Python\\" + str (i) + mmyyyy
我是python框架内省的新手,为了跟踪str函数调用,我尝试设置一个分析器或跟踪器。我已经以各种方式设置了跟踪器,但认为我缺少一些关于框架内省和如何获得内置函数名(即str)的关键理解。
def test_trace():
sys.setprofile(trace_calls)
hi = str('hellllo')
stuff = []
for i in range(10):
stuff.append(str(random.randrange(0, 10000000000)))
print(hi)
os._ex
当我试图打开一个模型时,我在管理控制台中得到了一个错误(在我的例子中是雇员)。这是在添加了一个ForeignKey('self')字段之后发生的。我想这与str方法是冲突的。如果我注释掉该方法,则没有错误,但是模型中的所有对象都以“employee对象”的形式出现。下面是我的错误看起来像
这是我的models.py:
from django.db import models
import calendar
from datetime import datetime
from datetime import timedelta
class employees(models.
我有一份content=的清单“.”变量(str)该变量必须至少匹配这些列表中的每个值中的一个(大小写不敏感的)。对于如何做到最好,你有什么建议吗?
react_terms =
和
python_terms =
和
cities_countries =
我正在尝试的东西(不起作用)
for content_str in content:
if content_str in any(react_terms) and any(python_terms) and any(cities_countries):
print(content_str, "match
使用python,我导入了一个带有名称列表的csv文件。我想通过删除任何尾随的;,?字符来清除数据。我发现了python中的带状函数,并决定使用它。我注意到的是,它对文本没有任何影响。我注意到python并不认为它是字符串。当我运行item is str时,它会返回false。当我尝试使用str(item)时,它会说'list‘对象是不可调用的。
寻找将字符串(在我的例子中为文件名)与字符串中间的任何格式的日期匹配的pythonic方式。
例如:python-1u222-ea-str-b08-10_dec_2018.zip --我正在尝试用python的方式来匹配上面的字符串和任何日期,而不是10_dec_2018。
element = "python-1u222-ea-str-b08-10_dec_2018.zip"
m = re.match("python-1u222-ea-str-b08-\"+\"[\d]{1,2}_[ADFJMNOS]\w*_[\d]{4}\"+\".zi
我想从python调用c程序。我的c程序需要几个输入参数(用于计算图像的几个属性),例如图像名称、中心位置(x_c、y_c)、面积、半径等。因此,这些输入参数是我在python中计算的,然后想将它传递给c程序。在python代码中,我需要首先得到需要计算x_c、y_c、area等的图像。所以在python脚本中,
file=sys.argv[1] # here I am passing the name of input image
***
calculate x_c, y_c, area, etc...
***
现在,在同一个python脚本中,我希望将上面的计算值和图像名传递给c程序。在p
我有以下Ruby代码:
a = "Python"
b = a.+"xyz"
c = b.insert(2, "oo")
puts a
puts b
puts c
我期待的是:
Python
Pythonxyz
Pyoothonxyz
但我得到了:
Python
Pyoothonxyz
Pyoothonxyz
有人能帮我吗?我刚刚开始使用Ruby,这有点令人费解。谢谢你的帮助。
目前,我正在尝试计算用户输入的句子中的字数,以及在句子中使用'Python‘这个单词的次数,并在最后打印两个结果。我试图将这个句子强制转换为小写,但我目前还不确定如何将它集成到代码中。到目前为止,它计算输入'Python‘的次数,而不是'python’,我需要同时注册这两者。
sentence = input(str("Please enter a sentence with your thoughts on Python:"))
listOfWords = len(sentence.split())
howManyPython = sentence.c
我正在尝试使用一个名为bidi的Python包。在这个包的一个模块(algorithm.py)中,有一些行给出了错误,尽管它是包的一部分。
下面是几行代码:
# utf-8 ? we need unicode
if isinstance(unicode_or_str, unicode):
text = unicode_or_str
decoded = False
else:
text = unicode_or_str.decode(encoding)
decoded = True
下面是错误消息:
Traceback (most recent call last
我是python编程的新手。在python代码中调用函数Vigra.learning.RandomForest.Writehdf5时,会出现如下错误:
self.RF.writeHDF5(fileName, pathInFile, overwriteFlag)
Boost.Python.ArgumentError: Python argument types in
RandomForest.writeHDF5(RandomForest, str, str, bool)
did not match C++ signature:
writeHDF5(class vigra::RandomFores
我需要将接收到的IronPython字典变量转换为常规的Python字典。据我所知,这个变量被称为:
'System.Collections.Generic.Dictionary`2[System.String,System.String]'
如果我用:
for each in IronDictionary:
print type(each)
print each
我得到了:
type: '<class 'System.Collections.Generic.0, Culture=neutral, PublicKeyToken=b77a5c
我想在Python3中连接字符串和变量值。例如,在R中,我可以这样做:
today <- as.character(Sys.Date())
paste0("In ", substr(today,1,4), " this can be an R way")
在R中执行此代码将生成[1] "In the year 2018 R is so straightforward"。
在Python 3.6中尝试过这样的事情:
today = datetime.datetime.now()
"In year " + today.year
下面的示例显示了我在函数调用中使用字符串函数进行映射时遇到的错误。我需要帮助来解释为什么会发生这种事。谢谢。
>>> s=["this is a string","python python python","split split split"]
>>> map(split,s)
Traceback (most recent call last):
File "<pyshell#16>", line 1, in <module>
map(split,s)
N
我刚开始学习python,我遇到了一个按字母顺序排序单词的代码。
我的代码是:
my_str="Welcome to Python"
words = my_str.split()
words.sort()
print("The sorted words are:")
for word in words:
print(word)
我的结果是:
排序后的单词为:
Python
Welcome
to
我的意思是它是按字母顺序排序的,那么结果应该是
Python
to
Welcome
我完全困惑,无法在学习过程中前进,你的见解将是非常有帮助的。
让我的SAS会话开始,然后等待Python脚本完成,我遇到了一些问题。我正在使用Python进行一袋文字分析,并添加了一些情感分析,脚本执行得很好,但是SAS一直在继续。这出现了一个问题,因为SAS程序的其余部分需要Python脚本的结果才能正常运行。
我试过在SAS中使用this for all命令,但这似乎不适用于这个特定的问题。
下面是我在SAS中执行的代码:
%pScript_loc=path\pythonTester.py; /* LOCATION OF THE PROGRAM */
filename temp pipe "otherPath\python.exe &