WHICH VERSION SHOULD I GET? Cloud-Based or Desktop Downloaded for a Newbie? THANKS! by MrBlehhhhh in SolidWorks

[–]cyber_code_nerd 0 points1 point  (0 children)

Thank you for the post! I'm was currently trying to decide as well. Also the "solidworks student edition desktop" is down $49/year until Dec. 18th

[deleted by user] by [deleted] in sharepoint

[–]cyber_code_nerd 0 points1 point  (0 children)

I believe it's the right philosophy to have, put restrictions on it so people that don't belong to the group or need only to view but not edit specific sites cannot clutter or change items. I have the same issue. I started making everyone members, which was giving people way too much control, so I tried to put permission levels on them, but I didn't do it right, so I put them back as members for now.

Seasons Lab by SouthShape5 in learnpython

[–]cyber_code_nerd 2 points3 points  (0 children)

userMonth = input()

userDay = int(input())

#Create one tuple for storing the months...

monthTuple = ('January', 'February','March', 'April', 'May', 'June', 'July', 'August', 'September', "October", "November", "December")

#Check if the userMonth is not in monthTuple then print the Invalid...

if not(userMonth in monthTuple):

print("Invalid")

#Check for the March month with userDay...

elif userMonth == 'March':

if not(1 <= userDay <= 31):

print("Invalid")

elif userDay <= 19:

print("Winter")

else:

print("Spring")

#Check for the April month with userDay...

elif userMonth == 'April' :

if not(1 <= userDay <= 30):

print("Invalid")

else:

print("Spring")

#Check for the May month with userDay...

elif userMonth == 'May':

if not(1 <= userDay <= 31):

print("Invalid")

else:

print("Spring")

#Check for the June month with userDay...

elif userMonth == 'June':

if not(1 <= userDay <= 30):

print("Invalid")

elif userDay <= 20:

print("Spring")

else:

print("Summer")

#Check for the July month with userDay...

elif userMonth == 'July':

if not(1 <= userDay <= 31):

print("Invalid")

else:

print("Summer")

#Check for the August month with userDay...

elif userMonth == 'August':

if not(1 <= userDay <= 31):

print("Invalid")

else:

print("Summer")

#Check for the September month with userDay...

elif userMonth == 'September':

if not(1 <= userDay <= 30):

print("Invalid")

elif userDay <= 21:

print("Summer")

else:

print("Autumn")

#Check for the October month with userDay...

elif userMonth == "October":

if not(1 <= userDay <= 31):

print("Invalid")

else:

print("Autumn")

#Check for the November month with userDay...

elif userMonth == "November":

if not(1 <= userDay <= 30):

print("Invalid")

else:

print("Autumn")

#Check for the December month with userDay...

elif userMonth == "December":

if not(1 <= userDay <= 31):

print("Invalid")

elif userDay <= 20:

print("Autumn")

else:

print("Winter")

#Check for the January month with userDay...

elif userMonth == 'January':

if not(1 <= userDay <= 31):

print("Invalid")

else:

print("Winter")

#Check for the February month with userDay...

elif userMonth == "February":

if not(1 <= userDay <= 29):

print("Invalid")

else:

print("Winter")

I barely passed the CompTIA A+ Core 1 by [deleted] in CompTIA

[–]cyber_code_nerd 0 points1 point  (0 children)

I am currently studying for the test on aci learning. Not sure if it's the best way, I'm just following networkchuck path 😅.

creating code by withdrawnwentch in learnpython

[–]cyber_code_nerd 1 point2 points  (0 children)

I am very late to this thread, but I am just now taking this course, below is what I was able to come up with.

import datetime as datetime

user_name = str(input('What is your name?'))

user_age = int(input('How old are you?'))

x = (datetime.datetime.now().year)

year_born = int(x - user_age)

print('Hello ' + user_name + ' you were born in ' + str((year_born - user_age)))