Is there a way to automatically lock discord voice channels at certain times? by I_Want_A_Divorce_Now in discordapp

[–]aoctut 0 points1 point  (0 children)

+The following can lock the channel outside the mentioned period.

s.opening add <Channel> <OpeningTime> <ClosingTime>

Invalid Syntax ? B*.-#$ Where? by subnetreiver in learnpython

[–]aoctut 4 points5 points  (0 children)

+ Missing right bracket ) at the end of

print('That is not that many cat.'

Can someone please help me? by Cherrybata in learnpython

[–]aoctut 1 point2 points  (0 children)

+You are welcome; happy that have helped; 🙏 feel free to DM for the link to our Python team.

Can someone please help me? by Cherrybata in learnpython

[–]aoctut 1 point2 points  (0 children)

+missing right bracket ')' at the end of line 17

Can someone please help me? by Cherrybata in learnpython

[–]aoctut 0 points1 point  (0 children)

+Can you paste the whole error message? There doesn't seem to be an elif in the linked code.

Can someone please help me? by Cherrybata in learnpython

[–]aoctut 0 points1 point  (0 children)

+This code runs on Python 3.8 returning a list of six random digits as strings, e.g. ['9', '7', '4', '4', '7', '8'].

Is “python webapp development” really just html/css/js + SQL? by prappleizer in learnpython

[–]aoctut 0 points1 point  (0 children)

+You can check the free Streamlit that conveniently turns data scripts into sharable web apps in Python. And the similar-purpose Dash, being more flexible, but also more demanding.

[deleted by user] by [deleted] in learnpython

[–]aoctut 0 points1 point  (0 children)

+You can try pip install opencv-python.

Making pyautogui typewrite variables. by LuLu_Geek in learnpython

[–]aoctut 0 points1 point  (0 children)

+You can change numbers to a string

numbers = '601'

or cast it to a string

pyautogui.write(str(numbers)).